/base/account/os_account/services/accountmgr/test/moduletest/os_account/ |
D | os_account_manager_service_create_os_account_test.cpp | 54 bool isOsAccountActived = false; in SetUpTestCase() local 55 … ErrCode ret = g_osAccountManagerService->IsOsAccountActived(MAIN_ACCOUNT_ID, isOsAccountActived); in SetUpTestCase() 57 while (ret != ERR_OK || !isOsAccountActived) { in SetUpTestCase() 61 ret = g_osAccountManagerService->IsOsAccountActived(MAIN_ACCOUNT_ID, isOsAccountActived); in SetUpTestCase()
|
D | os_account_manager_service_module_test.cpp | 413 bool isOsAccountActived = false; variable 414 …EQ(osAccountManagerService_->IsOsAccountActived(osAccountInfoOne.GetLocalId(), isOsAccountActived), 416 EXPECT_EQ(isOsAccountActived, false); 420 EXPECT_EQ(osAccountManagerService_->IsOsAccountActived(localId, isOsAccountActived), 1737 bool isOsAccountActived; variable 1739 osAccountManagerService_->IsOsAccountActived(MAIN_ACCOUNT_ID, isOsAccountActived)); 1751 bool isOsAccountActived; variable 1753 …ManagerService_->IsOsAccountConstraintEnable(MAIN_ACCOUNT_ID, CONSTANT_PRINT, isOsAccountActived));
|
/base/account/os_account/frameworks/osaccount/core/test/unittest/ |
D | os_account_test.cpp | 146 bool isOsAccountActived = false; in SetUpTestCase() local 147 ErrCode ret = g_osAccount->IsOsAccountActived(MAIN_ACCOUNT_ID, isOsAccountActived); in SetUpTestCase() 149 while (ret != ERR_OK || !isOsAccountActived) { in SetUpTestCase() 153 ret = g_osAccount->IsOsAccountActived(MAIN_ACCOUNT_ID, isOsAccountActived); in SetUpTestCase()
|
D | os_account_mock_test.cpp | 136 bool isOsAccountActived; variable 138 g_osAccount->IsOsAccountActived(MAIN_ACCOUNT_ID, isOsAccountActived));
|
/base/account/os_account/frameworks/osaccount/native/test/benchmarktest/ |
D | os_account_manager_benchmark_test.cpp | 107 bool isOsAccountActived = false; in BENCHMARK_F() local 109 EXPECT_EQ(OsAccountManager::IsOsAccountActived(LOCAL_ID, isOsAccountActived), ERR_OK); in BENCHMARK_F() 110 EXPECT_EQ(isOsAccountActived, true); in BENCHMARK_F()
|
/base/account/os_account/frameworks/test/unittest/ |
D | account_osaccount_proxy_mock_test.cpp | 142 bool isOsAccountActived = false; variable 143 ErrCode errCode = OsAccountManager::IsOsAccountActived(TEST_USER_ID, isOsAccountActived); 145 ASSERT_EQ(isOsAccountActived, false);
|
/base/account/os_account/frameworks/osaccount/native/test/moduletest/ |
D | os_account_manager_module_test.cpp | 259 bool isOsAccountActived = false; in SetUpTestCase() local 260 ErrCode ret = OsAccountManager::IsOsAccountActived(MAIN_ACCOUNT_ID, isOsAccountActived); in SetUpTestCase() 262 while (ret != ERR_OK || !isOsAccountActived) { in SetUpTestCase() 266 ret = OsAccountManager::IsOsAccountActived(MAIN_ACCOUNT_ID, isOsAccountActived); in SetUpTestCase() 469 bool isOsAccountActived = false; variable 470 …EXPECT_EQ(OsAccountManager::IsOsAccountActived(Constants::ADMIN_LOCAL_ID, isOsAccountActived), ERR… 471 EXPECT_EQ(isOsAccountActived, true); 484 bool isOsAccountActived = false; variable 485 …Q(OsAccountManager::IsOsAccountActived(osAccountInfoOne.GetLocalId(), isOsAccountActived), ERR_OK); 486 EXPECT_EQ(isOsAccountActived, false); [all …]
|
/base/account/os_account/frameworks/osaccount/native/src/ |
D | os_account_manager.cpp | 46 ErrCode OsAccountManager::IsOsAccountActived(const int id, bool &isOsAccountActived) in IsOsAccountActived() argument 48 return OsAccount::GetInstance().IsOsAccountActived(id, isOsAccountActived); in IsOsAccountActived()
|
/base/account/os_account/test/systemtest/common/resource/fuzzTest/src/ |
D | fuzz_test_manager.cpp | 113 bool isOsAccountActived = GetBoolParam(); in RegisterOsAccountManager() local 114 OsAccountManager::IsOsAccountActived(GetIntParam(), isOsAccountActived); in RegisterOsAccountManager()
|
/base/account/os_account/interfaces/innerkits/osaccount/native/include/ |
D | os_account_manager.h | 94 static ErrCode IsOsAccountActived(const int id, bool &isOsAccountActived);
|
/base/account/os_account/services/accountmgr/include/osaccount/ |
D | iinner_os_account.h | 37 virtual ErrCode IsOsAccountActived(const int id, bool &isOsAccountActived) = 0;
|
D | os_account_manager_service.h | 39 ErrCode IsOsAccountActived(const int id, bool &isOsAccountActived) override;
|
D | iinner_os_account_manager.h | 40 ErrCode IsOsAccountActived(const int id, bool &isOsAccountActived) override;
|
/base/account/os_account/frameworks/osaccount/core/include/ |
D | os_account.h | 34 ErrCode IsOsAccountActived(const int id, bool &isOsAccountActived);
|
D | ios_account.h | 41 virtual ErrCode IsOsAccountActived(const int id, bool &isOsAccountActived) = 0;
|
D | os_account_proxy.h | 35 ErrCode IsOsAccountActived(const int id, bool &isOsAccountActived) override;
|
/base/account/os_account/services/accountmgr/src/osaccount/ |
D | os_account_manager_service.cpp | 192 ErrCode OsAccountManagerService::IsOsAccountActived(const int id, bool &isOsAccountActived) in IsOsAccountActived() argument 202 return innerManager_.IsOsAccountActived(id, isOsAccountActived); in IsOsAccountActived() 211 return innerManager_.IsOsAccountActived(id, isOsAccountActived); in IsOsAccountActived()
|
D | inner_os_account_manager.cpp | 510 ErrCode IInnerOsAccountManager::IsOsAccountActived(const int id, bool &isOsAccountActived) in IsOsAccountActived() argument 512 isOsAccountActived = false; in IsOsAccountActived() 522 isOsAccountActived = true; in IsOsAccountActived() 525 isOsAccountActived = IsOsAccountIDInActiveList(id); in IsOsAccountActived()
|
D | os_account_stub.cpp | 789 bool isOsAccountActived = false; in ProcIsOsAccountActived() local 790 ErrCode result = IsOsAccountActived(localId, isOsAccountActived); in ProcIsOsAccountActived() 795 if (!reply.WriteBool(isOsAccountActived)) { in ProcIsOsAccountActived()
|
/base/account/os_account/frameworks/osaccount/core/src/ |
D | os_account.cpp | 132 ErrCode OsAccount::IsOsAccountActived(const int id, bool &isOsAccountActived) in IsOsAccountActived() argument 134 isOsAccountActived = false; in IsOsAccountActived() 145 return osAccountProxy_->IsOsAccountActived(id, isOsAccountActived); in IsOsAccountActived()
|
D | os_account_proxy.cpp | 122 ErrCode OsAccountProxy::IsOsAccountActived(const int id, bool &isOsAccountActived) in IsOsAccountActived() argument 127 isOsAccountActived = reply.ReadBool(); in IsOsAccountActived()
|
/base/account/os_account/interfaces/kits/napi/osaccount/include/ |
D | napi_os_account.h | 148 bool isOsAccountActived = false; member
|
/base/account/os_account/interfaces/kits/napi/osaccount/src/ |
D | napi_os_account_common.cpp | 1228 …errCode = OsAccountManager::IsOsAccountActived(asyncContext->id, asyncContext->isOsAccountActived); in IsActivedExecuteCB() 1244 napi_get_boolean(env, asyncContext->isOsAccountActived, &dataJs); in IsActivedCompletedCB() 1250 napi_get_boolean(env, asyncContext->isOsAccountActived, &dataJs); in IsActivedCompletedCB()
|
/base/account/os_account/ |
D | README.md | 507 …182593814"><a name="p186182593814"></a><a name="p186182593814"></a>isOsAccountActived(localId: num… 512 …182593814"><a name="p186182593814"></a><a name="p186182593814"></a>isOsAccountActived(localId: num…
|
D | README_zh.md | 801 …ame="p186182593814"></a>isOsAccountActived(localId: number, callback: AsyncCallback<boolean>…
|