/ohos5.0/base/account/os_account/frameworks/osaccount/core/test/unittest/ |
H A D | os_account_mock_test.cpp | 496 bool isOsAccountCompleted; variable 498 g_osAccount->IsOsAccountCompleted(MAIN_ACCOUNT_ID, isOsAccountCompleted));
|
/ohos5.0/base/account/os_account/frameworks/test/unittest/ |
H A D | account_osaccount_proxy_mock_test.cpp | 504 bool isOsAccountCompleted = true; variable 505 ErrCode errCode = OsAccountManager::IsOsAccountCompleted(MAIN_ACCOUNT_ID, isOsAccountCompleted);
|
/ohos5.0/base/account/os_account/frameworks/osaccount/native/src/ |
H A D | os_account_manager.cpp | 261 ErrCode OsAccountManager::IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) in IsOsAccountCompleted() argument 263 return OsAccount::GetInstance().IsOsAccountCompleted(id, isOsAccountCompleted); in IsOsAccountCompleted()
|
/ohos5.0/base/account/os_account/frameworks/osaccount/core/src/ |
H A D | os_account.cpp | 676 ErrCode OsAccount::IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) in IsOsAccountCompleted() argument 678 isOsAccountCompleted = false; in IsOsAccountCompleted() 687 return proxy->IsOsAccountCompleted(id, isOsAccountCompleted); in IsOsAccountCompleted()
|
H A D | os_account_proxy.cpp | 1007 ErrCode OsAccountProxy::IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) in IsOsAccountCompleted() argument 1014 if (!reply.ReadBool(isOsAccountCompleted)) { in IsOsAccountCompleted()
|
/ohos5.0/base/account/os_account/interfaces/innerkits/osaccount/native/include/ |
H A D | os_account_manager.h | 448 static ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted);
|
/ohos5.0/base/account/os_account/frameworks/osaccount/core/include/ |
H A D | ios_account.h | 82 virtual ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) = 0;
|
H A D | os_account.h | 71 ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted);
|
H A D | os_account_proxy.h | 76 ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) override;
|
/ohos5.0/base/account/os_account/services/accountmgr/test/moduletest/os_account/ |
H A D | os_account_manager_service_module_test.cpp | 941 bool isOsAccountCompleted = false; variable 943 Constants::START_USER_ID, isOsAccountCompleted), ERR_OK); 944 EXPECT_EQ(isOsAccountCompleted, true); 955 bool isOsAccountCompleted = true; variable 957 … Constants::MAX_USER_ID + 1, isOsAccountCompleted), ERR_ACCOUNT_COMMON_ACCOUNT_NOT_EXIST_ERROR); 958 EXPECT_TRUE(isOsAccountCompleted);
|
/ohos5.0/base/account/os_account/services/accountmgr/include/osaccount/ |
H A D | iinner_os_account.h | 73 virtual ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) = 0;
|
H A D | os_account_manager_service.h | 98 ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) override;
|
H A D | iinner_os_account_manager.h | 78 ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) override;
|
/ohos5.0/base/account/os_account/frameworks/osaccount/native/test/moduletest/ |
H A D | os_account_manager_module_test.cpp | 1884 bool isOsAccountCompleted = false; variable 1885 … EXPECT_EQ(OsAccountManager::IsOsAccountCompleted(MAIN_ACCOUNT_ID, isOsAccountCompleted), ERR_OK); 1886 EXPECT_EQ(isOsAccountCompleted, true); 1897 bool isOsAccountCompleted = false; variable 1898 EXPECT_NE(OsAccountManager::IsOsAccountCompleted(ERROR_LOCAL_ID, isOsAccountCompleted), ERR_OK); 1899 EXPECT_EQ(isOsAccountCompleted, false);
|
/ohos5.0/base/account/os_account/services/accountmgr/src/osaccount/ |
H A D | os_account_manager_service.cpp | 792 ErrCode OsAccountManagerService::IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) in IsOsAccountCompleted() argument 794 return innerManager_.IsOsAccountCompleted(id, isOsAccountCompleted); in IsOsAccountCompleted()
|
H A D | os_account_stub.cpp | 1375 bool isOsAccountCompleted = false; in ProcIsOsAccountCompleted() local 1376 ErrCode result = IsOsAccountCompleted(localId, isOsAccountCompleted); in ProcIsOsAccountCompleted() 1381 reply.WriteBool(isOsAccountCompleted); in ProcIsOsAccountCompleted()
|
H A D | inner_os_account_manager.cpp | 1937 ErrCode IInnerOsAccountManager::IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) in RetryToGetAccount() argument 1944 isOsAccountCompleted = osAccountInfo.GetIsCreateCompleted(); in RetryToGetAccount()
|