/base/account/os_account/test/fuzztest/osaccount/getmaxallowcreateidfromdatabase_fuzzer/ |
H A D | getmaxallowcreateidfromdatabase_fuzzer.cpp | 37 result = OsAccountManager::GetMaxAllowCreateIdFromDatabase(testName, id); in GetMaxAllowCreateIdFromDatabaseFuzzTest()
|
/base/account/os_account/services/accountmgr/include/osaccount/ |
H A D | os_account_database_operator.h | 38 ErrCode GetMaxAllowCreateIdFromDatabase(const std::string &storeID, int &id);
|
H A D | ios_account_control.h | 53 virtual ErrCode GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) = 0;
|
H A D | iinner_os_account.h | 83 virtual ErrCode GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) = 0;
|
H A D | os_account_manager_service.h | 107 ErrCode GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) override;
|
H A D | os_account_control_file_manager.h | 65 ErrCode GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) override;
|
H A D | iinner_os_account_manager.h | 88 ErrCode GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) override;
|
/base/account/os_account/services/accountmgr/test/unittest/os_account/mock/ |
H A D | mock_os_account_control_file_manager.h | 71 ErrCode GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) { return ERR_OK; } in GetMaxAllowCreateIdFromDatabase() function in OHOS::AccountSA::MockOsAccountControlFileManager
|
/base/account/os_account/services/accountmgr/test/unittest/os_account/ |
H A D | os_account_control_file_manager_test.cpp | 398 ret = g_controlManager->GetMaxAllowCreateIdFromDatabase(storeID_, id); in HWTEST_F() 447 ret = g_controlManager->GetMaxAllowCreateIdFromDatabase(storeID_, id); in HWTEST_F() 452 ret = g_controlManager->GetMaxAllowCreateIdFromDatabase(std::string(""), idByDefault); in HWTEST_F()
|
/base/account/os_account/interfaces/innerkits/osaccount/native/include/ |
H A D | os_account_manager.h | 479 static ErrCode GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id);
|
/base/account/os_account/frameworks/osaccount/core/include/ |
H A D | os_account.h | 78 ErrCode GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id);
|
H A D | ios_account.h | 89 virtual ErrCode GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) = 0;
|
H A D | os_account_proxy.h | 83 ErrCode GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) override;
|
/base/account/os_account/frameworks/osaccount/native/src/ |
H A D | os_account_manager.cpp | 282 ErrCode OsAccountManager::GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) in GetMaxAllowCreateIdFromDatabase() function in OHOS::AccountSA::OsAccountManager 284 return OsAccount::GetInstance().GetMaxAllowCreateIdFromDatabase(storeID, id); in GetMaxAllowCreateIdFromDatabase()
|
/base/account/os_account/services/accountmgr/src/osaccount/ |
H A D | os_account_database_operator.cpp | 207 ErrCode OsAccountDatabaseOperator::GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) in GetMaxAllowCreateIdFromDatabase() function in OHOS::AccountSA::OsAccountDatabaseOperator
|
H A D | os_account_manager_service.cpp | 879 ErrCode OsAccountManagerService::GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) in GetMaxAllowCreateIdFromDatabase() function in OHOS::AccountSA::OsAccountManagerService 881 return innerManager_.GetMaxAllowCreateIdFromDatabase(storeID, id); in GetMaxAllowCreateIdFromDatabase()
|
H A D | os_account_control_file_manager.cpp | 1635 ErrCode OsAccountControlFileManager::GetMaxAllowCreateIdFromDatabase(const std::string& storeID, in GetMaxAllowCreateIdFromDatabase() function in OHOS::OsAccountControlFileManager 1639 return osAccountDataBaseOperator_->GetMaxAllowCreateIdFromDatabase(storeID, id); in GetMaxAllowCreateIdFromDatabase()
|
H A D | inner_os_account_manager.cpp | 2125 ErrCode IInnerOsAccountManager::GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) in RetryToGetAccount() function in OHOS::AccountSA::IInnerOsAccountManager 2128 return osAccountControl_->GetMaxAllowCreateIdFromDatabase(storeID, id); in RetryToGetAccount()
|
H A D | os_account_stub.cpp | 1443 ErrCode result = GetMaxAllowCreateIdFromDatabase(storeID, id); in ProcGetMaxAllowCreateIdFromDatabase()
|
/base/account/os_account/frameworks/osaccount/core/src/ |
H A D | os_account.cpp | 786 ErrCode OsAccount::GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) in GetMaxAllowCreateIdFromDatabase() function in OHOS::AccountSA::OsAccount 792 return proxy->GetMaxAllowCreateIdFromDatabase(storeID, id); in GetMaxAllowCreateIdFromDatabase()
|
H A D | os_account_proxy.cpp | 1140 ErrCode OsAccountProxy::GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) in GetMaxAllowCreateIdFromDatabase() function in OHOS::AccountSA::OsAccountProxy
|
/base/account/os_account/frameworks/test/unittest/ |
H A D | account_osaccount_proxy_mock_test.cpp | 568 ErrCode errCode = OsAccountManager::GetMaxAllowCreateIdFromDatabase("", maxAllowCreateId); in HWTEST_F()
|
/base/account/os_account/frameworks/osaccount/core/test/unittest/ |
H A D | os_account_mock_test.cpp | 553 * @tc.desc: Test GetMaxAllowCreateIdFromDatabase getosaccountproxy faild 561 g_osAccount->GetMaxAllowCreateIdFromDatabase(storeID, id)); in HWTEST_F()
|
/base/account/os_account/services/accountmgr/test/moduletest/os_account/ |
H A D | os_account_manager_service_module_test.cpp | 1419 * @tc.desc: Test GetMaxAllowCreateIdFromDatabase with invalid store id. 1427 EXPECT_NE(osAccountManagerService_->GetMaxAllowCreateIdFromDatabase(STORE_ID, id), ERR_OK); in HWTEST_F() 1429 EXPECT_EQ(osAccountManagerService_->GetMaxAllowCreateIdFromDatabase(STORE_ID, id), ERR_OK); in HWTEST_F() 1436 * @tc.desc: Test GetMaxAllowCreateIdFromDatabase normal case. 1443 EXPECT_EQ(osAccountManagerService_->GetMaxAllowCreateIdFromDatabase(EMPTY_STORE_ID, id), ERR_OK); in HWTEST_F()
|
/base/account/os_account/frameworks/osaccount/native/test/moduletest/ |
H A D | os_account_manager_module_test.cpp | 1873 * @tc.desc: Test GetMaxAllowCreateIdFromDatabase. 1882 EXPECT_NE(OsAccountManager::GetMaxAllowCreateIdFromDatabase("", maxAllowCreateId), ERR_OK); in HWTEST_F() 1884 EXPECT_EQ(OsAccountManager::GetMaxAllowCreateIdFromDatabase("", maxAllowCreateId), ERR_OK); in HWTEST_F() 1891 * @tc.desc: Test GetMaxAllowCreateIdFromDatabase. 1898 EXPECT_NE(OsAccountManager::GetMaxAllowCreateIdFromDatabase("ERROR_STORE_ID", maxAllowCreateId), ERR_OK); in HWTEST_F()
|