/base/account/os_account/services/accountmgr/test/moduletest/app_account/ |
D | app_account_associated_data_test.cpp | 152 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); 215 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); 218 …result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY_TWO, STRING_VALUE_TWO); 247 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); 267 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); 270 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE_TWO); 292 …ErrCode result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE);
|
D | app_account_manager_service_thread_module_test.cpp | 59 void SetAssociatedData(const std::shared_ptr<AppAccountManagerService> &servicePtr); 101 void AppAccountManagerServiceThreadModuleTest::SetAssociatedData( in SetAssociatedData() function in AppAccountManagerServiceThreadModuleTest 106 ErrCode result = servicePtr->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); in SetAssociatedData() 117 ErrCode result = servicePtr->SetAssociatedData(STRING_NAME, STRING_KEY_TWO, STRING_VALUE_TWO); in SetAssociatedDataTwo() 198 …auto callbackSetAss = std::bind(&AppAccountManagerServiceThreadModuleTest::SetAssociatedData, this,
|
/base/account/os_account/test/fuzztest/appaccount/setassociateddata_fuzzer/ |
D | setassociateddata_fuzzer.cpp | 34 result = AppAccountManager::SetAssociatedData(testName, testKey, testValue); in SetAssociatedDataFuzzTest()
|
/base/account/os_account/frameworks/appaccount/native/src/ |
D | app_account_manager.cpp | 91 ErrCode AppAccountManager::SetAssociatedData(const std::string &name, const std::string &key, const… in SetAssociatedData() function in OHOS::AccountSA::AppAccountManager 93 return AppAccount::GetInstance().SetAssociatedData(name, key, value); in SetAssociatedData()
|
D | app_account.cpp | 186 ErrCode AppAccount::SetAssociatedData(const std::string &name, const std::string &key, const std::s… in SetAssociatedData() function in OHOS::AccountSA::AppAccount 192 return appAccountProxy_->SetAssociatedData(name, key, value); in SetAssociatedData()
|
D | app_account_info.cpp | 213 ErrCode AppAccountInfo::SetAssociatedData(const std::string &key, const std::string &value) in SetAssociatedData() function in OHOS::AccountSA::AppAccountInfo
|
/base/account/os_account/frameworks/appaccount/native/include/ |
D | app_account_info.h | 68 ErrCode SetAssociatedData(const std::string &key, const std::string &value);
|
D | iapp_account.h | 53 …virtual ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::stri…
|
D | app_account.h | 55 …ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &valu…
|
D | app_account_proxy.h | 49 ErrCode SetAssociatedData(
|
/base/account/os_account/interfaces/innerkits/appaccount/native/include/ |
D | app_account_manager.h | 200 …static ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::strin…
|
/base/account/os_account/services/accountmgr/include/appaccount/ |
D | inner_app_account_manager.h | 60 …ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &valu…
|
D | app_account_manager_service.h | 52 ErrCode SetAssociatedData(
|
D | app_account_control_manager.h | 66 …ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &valu…
|
/base/account/os_account/frameworks/appaccount/native/test/moduletest/ |
D | app_account_manager_module_test.cpp | 295 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE);
|
/base/account/os_account/services/accountmgr/src/appaccount/ |
D | inner_app_account_manager.cpp | 148 ErrCode InnerAppAccountManager::SetAssociatedData(const std::string &name, const std::string &key, in SetAssociatedData() function in OHOS::AccountSA::InnerAppAccountManager 151 ErrCode result = controlManager_.SetAssociatedData(name, key, value, appAccountCallingInfo); in SetAssociatedData()
|
D | app_account_manager_service.cpp | 276 ErrCode AppAccountManagerService::SetAssociatedData( in SetAssociatedData() function in OHOS::AccountSA::AppAccountManagerService 285 return innerManager_->SetAssociatedData(name, key, value, appAccountCallingInfo); in SetAssociatedData()
|
D | app_account_control_manager.cpp | 354 ErrCode AppAccountControlManager::SetAssociatedData(const std::string &name, const std::string &key, in SetAssociatedData() function in OHOS::AccountSA::AppAccountControlManager 366 result = appAccountInfo.SetAssociatedData(key, value); in SetAssociatedData()
|
/base/account/os_account/services/accountmgr/test/mock/app_account/ |
D | mock_app_account_stub.h | 46 ErrCode SetAssociatedData(
|
D | mock_app_account_stub.cpp | 153 ErrCode MockAppAccountStub::SetAssociatedData( in SetAssociatedData() function in OHOS::AccountSA::MockAppAccountStub
|
/base/account/os_account/frameworks/appaccount/native/test/unittest/ |
D | app_account_manager_test.cpp | 1191 ErrCode result = AppAccountManager::SetAssociatedData(STRING_EMPTY, STRING_KEY, STRING_VALUE); 1205 …ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME_OUT_OF_RANGE, STRING_KEY, STRING… 1219 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_EMPTY, STRING_VALUE); 1233 …ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY_OUT_OF_RANGE, STRING… 1247 …ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE_OUT_OF… 1260 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE);
|
/base/account/os_account/interfaces/kits/napi/appaccount/include/ |
D | napi_app_account.h | 39 static napi_value SetAssociatedData(napi_env env, napi_callback_info cbInfo);
|
/base/account/os_account/test/systemtest/common/resource/fuzzTest/src/ |
D | fuzz_test_manager.cpp | 60 AppAccountManager::SetAssociatedData(GetStringParam(), GetStringParam(), GetStringParam()); in RegisterAppAccountManager()
|
/base/account/os_account/frameworks/test/unittest/ |
D | account_appaccount_proxy_mock_test.cpp | 245 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE);
|
/base/account/os_account/services/accountmgr/test/unittest/app_account/ |
D | app_account_info_test.cpp | 444 ErrCode result = appAccountInfo.SetAssociatedData(key, value);
|