Home
last modified time | relevance | path

Searched refs:isOsAccountCompleted (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/base/account/os_account/frameworks/osaccount/core/test/unittest/
H A Dos_account_mock_test.cpp496 bool isOsAccountCompleted; variable
498 g_osAccount->IsOsAccountCompleted(MAIN_ACCOUNT_ID, isOsAccountCompleted));
/ohos5.0/base/account/os_account/frameworks/test/unittest/
H A Daccount_osaccount_proxy_mock_test.cpp504 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 Dos_account_manager.cpp261 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 Dos_account.cpp676 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 Dos_account_proxy.cpp1007 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 Dos_account_manager.h448 static ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted);
/ohos5.0/base/account/os_account/frameworks/osaccount/core/include/
H A Dios_account.h82 virtual ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) = 0;
H A Dos_account.h71 ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted);
H A Dos_account_proxy.h76 ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) override;
/ohos5.0/base/account/os_account/services/accountmgr/test/moduletest/os_account/
H A Dos_account_manager_service_module_test.cpp941 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 Diinner_os_account.h73 virtual ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) = 0;
H A Dos_account_manager_service.h98 ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) override;
H A Diinner_os_account_manager.h78 ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) override;
/ohos5.0/base/account/os_account/frameworks/osaccount/native/test/moduletest/
H A Dos_account_manager_module_test.cpp1884 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 Dos_account_manager_service.cpp792 ErrCode OsAccountManagerService::IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) in IsOsAccountCompleted() argument
794 return innerManager_.IsOsAccountCompleted(id, isOsAccountCompleted); in IsOsAccountCompleted()
H A Dos_account_stub.cpp1375 bool isOsAccountCompleted = false; in ProcIsOsAccountCompleted() local
1376 ErrCode result = IsOsAccountCompleted(localId, isOsAccountCompleted); in ProcIsOsAccountCompleted()
1381 reply.WriteBool(isOsAccountCompleted); in ProcIsOsAccountCompleted()
H A Dinner_os_account_manager.cpp1937 ErrCode IInnerOsAccountManager::IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) in RetryToGetAccount() argument
1944 isOsAccountCompleted = osAccountInfo.GetIsCreateCompleted(); in RetryToGetAccount()