/base/account/os_account/interfaces/innerkits/osaccount/native/include/ |
H A D | os_account_manager.h | 437 * @param isOsAccountCompleted - Indicates whether the current OS account is created completely. 440 static ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted);
|
/base/account/os_account/frameworks/osaccount/core/include/ |
H A D | os_account.h | 70 ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted);
|
H A D | ios_account.h | 81 virtual ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) = 0;
|
H A D | os_account_proxy.h | 75 ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) override;
|
/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 | 97 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;
|
/base/account/os_account/frameworks/test/unittest/ |
H A D | account_osaccount_proxy_mock_test.cpp | 504 bool isOsAccountCompleted = true; in HWTEST_F() local 505 ErrCode errCode = OsAccountManager::IsOsAccountCompleted(MAIN_ACCOUNT_ID, isOsAccountCompleted); in HWTEST_F()
|
/base/account/os_account/frameworks/osaccount/native/src/ |
H A D | os_account_manager.cpp | 256 ErrCode OsAccountManager::IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) in IsOsAccountCompleted() argument 258 return OsAccount::GetInstance().IsOsAccountCompleted(id, isOsAccountCompleted); in IsOsAccountCompleted()
|
/base/account/os_account/frameworks/osaccount/core/test/unittest/ |
H A D | os_account_mock_test.cpp | 496 bool isOsAccountCompleted; in HWTEST_F() local 498 g_osAccount->IsOsAccountCompleted(MAIN_ACCOUNT_ID, isOsAccountCompleted)); in HWTEST_F()
|
/base/account/os_account/frameworks/osaccount/core/src/ |
H A D | os_account.cpp | 671 ErrCode OsAccount::IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) in IsOsAccountCompleted() argument 673 isOsAccountCompleted = false; in IsOsAccountCompleted() 682 return proxy->IsOsAccountCompleted(id, isOsAccountCompleted); in IsOsAccountCompleted()
|
H A D | os_account_proxy.cpp | 992 ErrCode OsAccountProxy::IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) in IsOsAccountCompleted() argument 999 if (!reply.ReadBool(isOsAccountCompleted)) { in IsOsAccountCompleted() 1000 ACCOUNT_LOGE("failed to read isOsAccountCompleted"); in IsOsAccountCompleted()
|
/base/account/os_account/services/accountmgr/test/moduletest/os_account/ |
H A D | os_account_manager_service_module_test.cpp | 949 bool isOsAccountCompleted = false; in HWTEST_F() local 951 Constants::START_USER_ID, isOsAccountCompleted), ERR_OK); in HWTEST_F() 952 EXPECT_EQ(isOsAccountCompleted, true); in HWTEST_F() 963 bool isOsAccountCompleted = true; in HWTEST_F() local 965 Constants::MAX_USER_ID + 1, isOsAccountCompleted), ERR_ACCOUNT_COMMON_ACCOUNT_NOT_EXIST_ERROR); in HWTEST_F() 966 EXPECT_TRUE(isOsAccountCompleted); in HWTEST_F()
|
/base/account/os_account/frameworks/osaccount/native/test/moduletest/ |
H A D | os_account_manager_module_test.cpp | 1781 bool isOsAccountCompleted = false; in HWTEST_F() local 1782 EXPECT_EQ(OsAccountManager::IsOsAccountCompleted(MAIN_ACCOUNT_ID, isOsAccountCompleted), ERR_OK); in HWTEST_F() 1783 EXPECT_EQ(isOsAccountCompleted, true); in HWTEST_F() 1794 bool isOsAccountCompleted = false; in HWTEST_F() local 1795 EXPECT_NE(OsAccountManager::IsOsAccountCompleted(ERROR_LOCAL_ID, isOsAccountCompleted), ERR_OK); in HWTEST_F() 1796 EXPECT_EQ(isOsAccountCompleted, false); in HWTEST_F()
|
/base/account/os_account/services/accountmgr/src/osaccount/ |
H A D | os_account_manager_service.cpp | 770 ErrCode OsAccountManagerService::IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) in IsOsAccountCompleted() argument 772 return innerManager_.IsOsAccountCompleted(id, isOsAccountCompleted); in IsOsAccountCompleted()
|
H A D | os_account_stub.cpp | 1344 bool isOsAccountCompleted = false; in ProcIsOsAccountCompleted() local 1345 ErrCode result = IsOsAccountCompleted(localId, isOsAccountCompleted); in ProcIsOsAccountCompleted() 1350 reply.WriteBool(isOsAccountCompleted); in ProcIsOsAccountCompleted()
|
H A D | inner_os_account_manager.cpp | 1898 ErrCode IInnerOsAccountManager::IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) in RetryToGetAccount() argument 1905 isOsAccountCompleted = osAccountInfo.GetIsCreateCompleted(); in RetryToGetAccount()
|