Home
last modified time | relevance | path

Searched refs:SetAssociatedData (Results 1 - 25 of 29) sorted by relevance

12

/base/account/os_account/services/accountmgr/test/moduletest/app_account/
H A Dapp_account_associated_data_test.cpp156 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); in HWTEST_F()
219 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); in HWTEST_F()
222 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY_TWO, STRING_VALUE_TWO); in HWTEST_F()
251 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); in HWTEST_F()
271 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); in HWTEST_F()
274 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE_TWO); in HWTEST_F()
296 ErrCode result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); in HWTEST_F()
311 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); in HWMTEST_F()
331 result = g_accountManagerService->SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); in HWMTEST_F()
365 result = g_accountManagerService->SetAssociatedData(stringNam in HWMTEST_F()
[all...]
H A Dapp_account_manager_service_thread_module_test.cpp56 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()
112 GTEST_LOG_(INFO) << "after SetAssociatedData, result = " << result; in SetAssociatedData()
120 ErrCode result = servicePtr->SetAssociatedData(STRING_NAME, STRING_KEY_TWO, STRING_VALUE_TWO); in SetAssociatedDataTwo()
123 GTEST_LOG_(INFO) << "after SetAssociatedData, result = " << result; in SetAssociatedDataTwo()
198 auto callbackSetAss = [this] { this->SetAssociatedData(this->appAccountManagerServicePtr_); }; in HWTEST_F()
H A Dapp_account_manager_service_module_not_mock_test.cpp143 result = g_accountManagerService->SetAssociatedData(STRING_NAME, KEY, value); in HWTEST_F()
/base/account/os_account/test/fuzztest/appaccount/setassociateddata_fuzzer/
H A Dsetassociateddata_fuzzer.cpp36 result = AppAccountManager::SetAssociatedData(testName, testKey, testValue); in SetAssociatedDataFuzzTest()
/base/account/os_account/services/accountmgr/include/appaccount/
H A Dinner_app_account_manager.h61 ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &value,
H A Dapp_account_control_manager.h67 ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &value,
H A Dapp_account_manager_service.h52 ErrCode SetAssociatedData(
/base/account/os_account/frameworks/appaccount/native/include/
H A Dapp_account_info.h70 ErrCode SetAssociatedData(const std::string &key, const std::string &value);
H A Dapp_account.h55 ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &value);
H A Dapp_account_proxy.h49 ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &value) override;
H A Diapp_account.h53 virtual ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &value) = 0;
/base/account/os_account/interfaces/innerkits/appaccount/native/include/
H A Dapp_account_manager.h200 static ErrCode SetAssociatedData(const std::string &name, const std::string &key, const std::string &value);
/base/account/os_account/frameworks/appaccount/native/src/
H A Dapp_account_manager.cpp91 ErrCode AppAccountManager::SetAssociatedData(const std::string &name, const std::string &key, const std::string &value) in SetAssociatedData() function in OHOS::AccountSA::AppAccountManager
93 return AppAccount::GetInstance().SetAssociatedData(name, key, value); in SetAssociatedData()
H A Dapp_account.cpp214 ErrCode AppAccount::SetAssociatedData(const std::string &name, const std::string &key, const std::string &value) in SetAssociatedData() function in OHOS::AccountSA::AppAccount
223 return proxy->SetAssociatedData(name, key, value); in SetAssociatedData()
H A Dapp_account_info.cpp248 ErrCode AppAccountInfo::SetAssociatedData(const std::string &key, const std::string &value) in SetAssociatedData() function in OHOS::AccountSA::AppAccountInfo
/base/account/os_account/services/accountmgr/src/appaccount/
H A Dinner_app_account_manager.cpp149 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 Dapp_account_manager_service.cpp277 ErrCode AppAccountManagerService::SetAssociatedData( in SetAssociatedData() function in OHOS::AccountSA::AppAccountManagerService
286 return innerManager_->SetAssociatedData(name, key, value, appAccountCallingInfo); in SetAssociatedData()
/base/account/os_account/frameworks/appaccount/native/test/unittest/
H A Dapp_account_manager_test.cpp1103 ErrCode result = AppAccountManager::SetAssociatedData(STRING_EMPTY, STRING_KEY, STRING_VALUE); in HWTEST_F()
1117 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME_OUT_OF_RANGE, STRING_KEY, STRING_VALUE); in HWTEST_F()
1131 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_EMPTY, STRING_VALUE); in HWTEST_F()
1145 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY_OUT_OF_RANGE, STRING_VALUE); in HWTEST_F()
1159 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE_OUT_OF_RANGE); in HWTEST_F()
1172 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); in HWTEST_F()
/base/account/os_account/services/accountmgr/test/mock/app_account/
H A Dmock_app_account_stub.cpp153 ErrCode MockAppAccountStub::SetAssociatedData( in SetAssociatedData() function in OHOS::AccountSA::MockAppAccountStub
H A Dmock_app_account_stub.h46 ErrCode SetAssociatedData(
/base/account/os_account/frameworks/appaccount/native/test/moduletest/
H A Dapp_account_manager_module_test.cpp296 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); in HWTEST_F()
/base/account/os_account/interfaces/kits/napi/appaccount/include/
H A Dnapi_app_account.h39 static napi_value SetAssociatedData(napi_env env, napi_callback_info cbInfo);
/base/account/os_account/frameworks/test/unittest/
H A Daccount_appaccount_proxy_mock_test.cpp252 ErrCode result = AppAccountManager::SetAssociatedData(STRING_NAME, STRING_KEY, STRING_VALUE); in HWTEST_F()
/base/account/os_account/interfaces/kits/napi/appaccount/src/
H A Dnapi_app_account.cpp46 DECLARE_NAPI_FUNCTION("setAssociatedData", SetAssociatedData),
591 napi_value NapiAppAccount::SetAssociatedData(napi_env env, napi_callback_info cbInfo) in SetAssociatedData() function in OHOS::AccountJsKit::NapiAppAccount
612 napi_create_string_utf8(env, "SetAssociatedData", NAPI_AUTO_LENGTH, &resource); in SetCustomDataInternal()
622 AppAccountManager::SetAssociatedData(asyncContext->name, asyncContext->key, asyncContext->value); in SetCustomDataInternal()
/base/account/os_account/services/accountmgr/test/unittest/app_account/
H A Dapp_account_info_test.cpp451 ErrCode result = appAccountInfo.SetAssociatedData(key, value); in HWTEST_F()

Completed in 22 milliseconds

12