/ohos5.0/base/account/os_account/services/accountmgr/test/moduletest/app_account/ |
H A 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);
|
H A D | app_account_manager_service_thread_module_test.cpp | 56 void SetAssociatedData(const std::shared_ptr<AppAccountManagerService> &servicePtr); 104 void AppAccountManagerServiceThreadModuleTest::SetAssociatedData( in SetAssociatedData() function in AppAccountManagerServiceThreadModuleTest 109 ErrCode result = servicePtr->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); in SetAssociatedData() 120 ErrCode result = servicePtr->SetAssociatedData(STRING_NAME, STRING_KEY_TWO, STRING_VALUE_TWO); in SetAssociatedDataTwo() 198 auto callbackSetAss = [this] { this->SetAssociatedData(this->appAccountManagerServicePtr_); }; in __anon240987bc0502()
|
H A D | app_account_manager_service_module_not_mock_test.cpp | 143 result = g_accountManagerService->SetAssociatedData(STRING_NAME, KEY, value);
|
/ohos5.0/base/account/os_account/test/fuzztest/appaccount/setassociateddata_fuzzer/ |
H A D | setassociateddata_fuzzer.cpp | 36 result = AppAccountManager::SetAssociatedData(testName, testKey, testValue); in SetAssociatedDataFuzzTest()
|
/ohos5.0/base/account/os_account/frameworks/appaccount/native/src/ |
H A 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()
|
H A D | app_account.cpp | 214 ErrCode AppAccount::SetAssociatedData(const std::string &name, const std::string &key, const std::s… in SetAssociatedData() function in OHOS::AccountSA::AppAccount 223 return proxy->SetAssociatedData(name, key, value); in SetAssociatedData()
|
H A D | app_account_info.cpp | 255 ErrCode AppAccountInfo::SetAssociatedData(const std::string &key, const std::string &value) in SetAssociatedData() function in OHOS::AccountSA::AppAccountInfo
|
/ohos5.0/base/account/os_account/services/accountmgr/src/appaccount/ |
H A D | inner_app_account_manager.cpp | 149 ErrCode InnerAppAccountManager::SetAssociatedData(const std::string &name, const std::string &key, in SetAssociatedData() function in OHOS::AccountSA::InnerAppAccountManager 152 ErrCode result = controlManager_.SetAssociatedData(name, key, value, appAccountCallingInfo); in SetAssociatedData()
|
H A D | app_account_manager_service.cpp | 250 ErrCode AppAccountManagerService::SetAssociatedData( in SetAssociatedData() function in OHOS::AccountSA::AppAccountManagerService 259 return innerManager_->SetAssociatedData(name, key, value, appAccountCallingInfo); in SetAssociatedData()
|
H A D | app_account_control_manager.cpp | 537 ErrCode AppAccountControlManager::SetAssociatedData(const std::string &name, const std::string &key, in SetAssociatedData() function in OHOS::AccountSA::AppAccountControlManager 549 result = appAccountInfo.SetAssociatedData(key, value); in SetAssociatedData()
|
/ohos5.0/base/account/os_account/frameworks/appaccount/native/test/unittest/ |
H A D | app_account_manager_test.cpp | 1103 ErrCode result = AppAccountManager::SetAssociatedData(STRING_EMPTY, STRING_KEY, STRING_VALUE); 1117 …ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME_OUT_OF_RANGE, STRING_KEY, STRING… 1131 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_EMPTY, STRING_VALUE); 1145 …ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY_OUT_OF_RANGE, STRING… 1159 …ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE_OUT_OF… 1172 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE);
|
/ohos5.0/base/account/os_account/frameworks/appaccount/native/include/ |
H A D | app_account_info.h | 70 ErrCode SetAssociatedData(const std::string &key, const std::string &value);
|
H A D | iapp_account.h | 53 …virtual ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::stri…
|
H A D | app_account.h | 55 …ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &valu…
|
H A D | app_account_proxy.h | 49 …ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &valu…
|
/ohos5.0/base/account/os_account/services/accountmgr/include/appaccount/ |
H A D | inner_app_account_manager.h | 61 …ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &valu…
|
H A D | app_account_control_manager.h | 67 …ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &valu…
|
H A D | app_account_manager_service.h | 52 ErrCode SetAssociatedData(
|
/ohos5.0/base/account/os_account/interfaces/innerkits/appaccount/native/include/ |
H A D | app_account_manager.h | 200 …static ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::strin…
|
/ohos5.0/base/account/os_account/frameworks/appaccount/native/test/moduletest/ |
H A D | app_account_manager_module_test.cpp | 296 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE);
|
/ohos5.0/base/account/os_account/services/accountmgr/test/mock/app_account/ |
H A D | mock_app_account_stub.h | 46 ErrCode SetAssociatedData(
|
H A D | mock_app_account_stub.cpp | 153 ErrCode MockAppAccountStub::SetAssociatedData( in SetAssociatedData() function in OHOS::AccountSA::MockAppAccountStub
|
/ohos5.0/base/account/os_account/interfaces/kits/napi/appaccount/include/ |
H A D | napi_app_account.h | 39 static napi_value SetAssociatedData(napi_env env, napi_callback_info cbInfo);
|
/ohos5.0/base/account/os_account/frameworks/test/unittest/ |
H A D | account_appaccount_proxy_mock_test.cpp | 252 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE);
|
/ohos5.0/base/account/os_account/interfaces/kits/napi/appaccount/src/ |
H A D | napi_app_account.cpp | 46 DECLARE_NAPI_FUNCTION("setAssociatedData", SetAssociatedData), 591 napi_value NapiAppAccount::SetAssociatedData(napi_env env, napi_callback_info cbInfo) in SetAssociatedData() function in OHOS::AccountJsKit::NapiAppAccount 622 … AppAccountManager::SetAssociatedData(asyncContext->name, asyncContext->key, asyncContext->value); in SetCustomDataInternal()
|