Home
last modified time | relevance | path

Searched refs:isOsAccountExists (Results 1 – 16 of 16) sorted by relevance

/base/account/os_account/services/accountmgr/test/unittest/os_account/
Dos_account_control_file_manager_test.cpp200 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/
Daccount_osaccount_proxy_mock_test.cpp128 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/
Dos_account_manager.cpp41 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/
Dfuzz_test_manager.cpp108 bool isOsAccountExists = GetBoolParam(); in RegisterOsAccountManager() local
109 OsAccountManager::IsOsAccountExists(GetIntParam(), isOsAccountExists); in RegisterOsAccountManager()
/base/account/os_account/frameworks/osaccount/core/test/unittest/
Dos_account_mock_test.cpp123 bool isOsAccountExists; variable
125 g_osAccount->IsOsAccountExists(MAIN_ACCOUNT_ID, isOsAccountExists));
/base/account/os_account/interfaces/innerkits/osaccount/native/include/
Dos_account_manager.h85 static ErrCode IsOsAccountExists(const int id, bool &isOsAccountExists);
/base/account/os_account/frameworks/osaccount/core/include/
Dos_account.h33 ErrCode IsOsAccountExists(const int id, bool &isOsAccountExists);
Dios_account.h40 virtual ErrCode IsOsAccountExists(const int id, bool &isOsAccountExists) = 0;
Dos_account_proxy.h34 ErrCode IsOsAccountExists(const int id, bool &isOsAccountExists) override;
/base/account/os_account/services/accountmgr/include/osaccount/
Dos_account_manager_service.h38 ErrCode IsOsAccountExists(const int id, bool &isOsAccountExists) override;
/base/account/os_account/frameworks/osaccount/core/src/
Dos_account.cpp116 ErrCode OsAccount::IsOsAccountExists(const int id, bool &isOsAccountExists) in IsOsAccountExists() argument
118 isOsAccountExists = false; in IsOsAccountExists()
129 return osAccountProxy_->IsOsAccountExists(id, isOsAccountExists); in IsOsAccountExists()
Dos_account_proxy.cpp112 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/
Dos_account_manager_service_module_test.cpp371 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/
Dos_account_manager_service.cpp187 ErrCode OsAccountManagerService::IsOsAccountExists(const int id, bool &isOsAccountExists) in IsOsAccountExists() argument
189 return innerManager_.IsOsAccountExists(id, isOsAccountExists); in IsOsAccountExists()
Dos_account_stub.cpp891 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/
Dos_account_manager_module_test.cpp442 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);