/base/account/os_account/services/accountmgr/test/unittest/os_account/ |
D | os_account_control_file_manager_test.cpp | 200 bool isOsAccountExists = false; variable 201 …(osAccountControlManager_->IsOsAccountExists(Constants::START_USER_ID, isOsAccountExists), ERR_OK); 202 EXPECT_EQ(isOsAccountExists, true); 213 bool isOsAccountExists = true; variable 215 EXPECT_EQ(osAccountControlManager_->IsOsAccountExists(id, isOsAccountExists), ERR_OK); 216 EXPECT_EQ(isOsAccountExists, false); 243 bool isOsAccountExists = true; variable 244 EXPECT_EQ(osAccountControlManager_->IsOsAccountExists(id, isOsAccountExists), ERR_OK); 245 EXPECT_EQ(isOsAccountExists, false); 260 bool isOsAccountExists = false; variable [all …]
|
/base/account/os_account/frameworks/test/unittest/ |
D | account_osaccount_proxy_mock_test.cpp | 128 bool isOsAccountExists = false; variable 129 ErrCode errCode = OsAccountManager::IsOsAccountExists(TEST_USER_ID, isOsAccountExists); 131 ASSERT_EQ(isOsAccountExists, false);
|
/base/account/os_account/frameworks/osaccount/native/src/ |
D | os_account_manager.cpp | 41 ErrCode OsAccountManager::IsOsAccountExists(const int id, bool &isOsAccountExists) in IsOsAccountExists() argument 43 return OsAccount::GetInstance().IsOsAccountExists(id, isOsAccountExists); in IsOsAccountExists()
|
/base/account/os_account/test/systemtest/common/resource/fuzzTest/src/ |
D | fuzz_test_manager.cpp | 108 bool isOsAccountExists = GetBoolParam(); in RegisterOsAccountManager() local 109 OsAccountManager::IsOsAccountExists(GetIntParam(), isOsAccountExists); in RegisterOsAccountManager()
|
/base/account/os_account/frameworks/osaccount/core/test/unittest/ |
D | os_account_mock_test.cpp | 123 bool isOsAccountExists; variable 125 g_osAccount->IsOsAccountExists(MAIN_ACCOUNT_ID, isOsAccountExists));
|
/base/account/os_account/interfaces/innerkits/osaccount/native/include/ |
D | os_account_manager.h | 85 static ErrCode IsOsAccountExists(const int id, bool &isOsAccountExists);
|
/base/account/os_account/frameworks/osaccount/core/include/ |
D | os_account.h | 33 ErrCode IsOsAccountExists(const int id, bool &isOsAccountExists);
|
D | ios_account.h | 40 virtual ErrCode IsOsAccountExists(const int id, bool &isOsAccountExists) = 0;
|
D | os_account_proxy.h | 34 ErrCode IsOsAccountExists(const int id, bool &isOsAccountExists) override;
|
/base/account/os_account/services/accountmgr/include/osaccount/ |
D | os_account_manager_service.h | 38 ErrCode IsOsAccountExists(const int id, bool &isOsAccountExists) override;
|
/base/account/os_account/frameworks/osaccount/core/src/ |
D | os_account.cpp | 116 ErrCode OsAccount::IsOsAccountExists(const int id, bool &isOsAccountExists) in IsOsAccountExists() argument 118 isOsAccountExists = false; in IsOsAccountExists() 129 return osAccountProxy_->IsOsAccountExists(id, isOsAccountExists); in IsOsAccountExists()
|
D | os_account_proxy.cpp | 112 ErrCode OsAccountProxy::IsOsAccountExists(const int id, bool &isOsAccountExists) in IsOsAccountExists() argument 117 isOsAccountExists = reply.ReadBool(); in IsOsAccountExists()
|
/base/account/os_account/services/accountmgr/test/moduletest/os_account/ |
D | os_account_manager_service_module_test.cpp | 371 bool isOsAccountExists = false; variable 372 …(osAccountManagerService_->IsOsAccountExists(Constants::START_USER_ID, isOsAccountExists), ERR_OK); 373 EXPECT_EQ(isOsAccountExists, true); 384 bool isOsAccountExists = true; variable 385 …sAccountManagerService_->IsOsAccountExists(Constants::MAX_USER_ID + 1, isOsAccountExists), ERR_OK); 386 EXPECT_EQ(isOsAccountExists, false);
|
/base/account/os_account/services/accountmgr/src/osaccount/ |
D | os_account_manager_service.cpp | 187 ErrCode OsAccountManagerService::IsOsAccountExists(const int id, bool &isOsAccountExists) in IsOsAccountExists() argument 189 return innerManager_.IsOsAccountExists(id, isOsAccountExists); in IsOsAccountExists()
|
D | os_account_stub.cpp | 891 bool isOsAccountExists = false; in ProcIsOsAccountExists() local 892 ErrCode result = IsOsAccountExists(localId, isOsAccountExists); in ProcIsOsAccountExists() 897 if (!reply.WriteBool(isOsAccountExists)) { in ProcIsOsAccountExists()
|
/base/account/os_account/frameworks/osaccount/native/test/moduletest/ |
D | os_account_manager_module_test.cpp | 442 bool isOsAccountExists = false; variable 443 …EXPECT_EQ(OsAccountManager::IsOsAccountExists(Constants::START_USER_ID, isOsAccountExists), ERR_OK… 444 EXPECT_EQ(isOsAccountExists, true); 455 bool isOsAccountExists = true; variable 456 EXPECT_EQ(OsAccountManager::IsOsAccountExists(Constants::MAX_USER_ID + 1, isOsAccountExists), 458 EXPECT_EQ(isOsAccountExists, false);
|