Home
last modified time | relevance | path

Searched refs:DeleteAccountCredential (Results 1 - 25 of 26) sorted by relevance

12

/base/account/os_account/test/fuzztest/appaccount/deleteaccountcredential_fuzzer/
H A Ddeleteaccountcredential_fuzzer.cpp35 result = AppAccountManager::DeleteAccountCredential(testName, testCredentialType); in DeleteAccountCredentialFuzzTest()
/base/account/os_account/services/accountmgr/test/moduletest/app_account/
H A Dapp_account_manager_service_module_not_mock_test.cpp213 result = g_accountManagerService->DeleteAccountCredential(STRING_NAME, AUTH_TYPE); in HWTEST_F()
H A Dapp_account_manager_service_module_test.cpp2326 * @tc.desc: test DeleteAccountCredential
2346 result = g_accountManagerService->DeleteAccountCredential(STRING_NAME, STRING_CREDENTIAL_TYPE); in HWTEST_F()
2360 * @tc.desc: test DeleteAccountCredential
2372 result = g_accountManagerService->DeleteAccountCredential(STRING_NAME, STRING_CREDENTIAL_TYPE); in HWTEST_F()
2381 * @tc.desc: test DeleteAccountCredential
2390 ErrCode result = g_accountManagerService->DeleteAccountCredential(STRING_NAME, STRING_CREDENTIAL_TYPE); in HWTEST_F()
2404 result = g_accountManagerService->DeleteAccountCredential(STRING_NAME, STRING_CREDENTIAL_TYPE_TWO); in HWTEST_F()
/base/account/os_account/services/accountmgr/include/appaccount/
H A Dinner_app_account_manager.h68 ErrCode DeleteAccountCredential(const std::string &name, const std::string &credentialType,
H A Dapp_account_control_manager.h74 ErrCode DeleteAccountCredential(const std::string &name, const std::string &credentialType,
H A Dapp_account_manager_service.h59 ErrCode DeleteAccountCredential(const std::string &name, const std::string &credentialType) override;
/base/account/os_account/frameworks/appaccount/native/include/
H A Dapp_account_info.h74 ErrCode DeleteAccountCredential(const std::string &credentialType);
H A Dapp_account.h93 ErrCode DeleteAccountCredential(const std::string &name, const std::string &credentialType);
H A Dapp_account_proxy.h55 ErrCode DeleteAccountCredential(const std::string &name, const std::string &credentialType) override;
H A Diapp_account.h59 virtual ErrCode DeleteAccountCredential(const std::string &name, const std::string &credentialType) = 0;
/base/account/os_account/interfaces/innerkits/appaccount/native/include/
H A Dapp_account_manager.h466 static ErrCode DeleteAccountCredential(const std::string &name, const std::string &credentialType);
/base/account/os_account/frameworks/appaccount/native/src/
H A Dapp_account_manager.cpp221 ErrCode AppAccountManager::DeleteAccountCredential(const std::string &name, const std::string &credentialType) in DeleteAccountCredential() function in OHOS::AccountSA::AppAccountManager
223 return AppAccount::GetInstance().DeleteAccountCredential(name, credentialType); in DeleteAccountCredential()
H A Dapp_account.cpp484 ErrCode AppAccount::DeleteAccountCredential(const std::string &name, const std::string &credentialType) in DeleteAccountCredential() function in OHOS::AccountSA::AppAccount
493 return proxy->DeleteAccountCredential(name, credentialType); in DeleteAccountCredential()
H A Dapp_account_info.cpp326 ErrCode AppAccountInfo::DeleteAccountCredential(const std::string &credentialType) in DeleteAccountCredential() function in OHOS::AccountSA::AppAccountInfo
H A Dapp_account_proxy.cpp946 ErrCode AppAccountProxy::DeleteAccountCredential( in DeleteAccountCredential() function in OHOS::AccountSA::AppAccountProxy
/base/account/os_account/services/accountmgr/src/appaccount/
H A Dinner_app_account_manager.cpp187 ErrCode InnerAppAccountManager::DeleteAccountCredential(const std::string &name, const std::string &credentialType, in DeleteAccountCredential() function in OHOS::AccountSA::InnerAppAccountManager
194 ErrCode result = controlManager_.DeleteAccountCredential(name, credentialType, appAccountCallingInfo); in DeleteAccountCredential()
H A Dapp_account_manager_service.cpp633 ErrCode AppAccountManagerService::DeleteAccountCredential( in DeleteAccountCredential() function in OHOS::AccountSA::AppAccountManagerService
643 return innerManager_->DeleteAccountCredential(name, credentialType, callingUid, bundleName, appIndex); in DeleteAccountCredential()
H A Dapp_account_control_manager.cpp626 ErrCode AppAccountControlManager::DeleteAccountCredential(const std::string &name, const std::string &credentialType, in DeleteAccountCredential() function in OHOS::AccountSA::AppAccountControlManager
642 result = appAccountInfo.DeleteAccountCredential(credentialType); in DeleteAccountCredential()
/base/account/os_account/services/accountmgr/test/mock/app_account/
H A Dmock_app_account_stub.cpp327 ErrCode MockAppAccountStub::DeleteAccountCredential(const std::string &name, const std::string &credentialType) in DeleteAccountCredential() function in OHOS::AccountSA::MockAppAccountStub
H A Dmock_app_account_stub.h88 ErrCode DeleteAccountCredential(const std::string &name, const std::string &credentialType) override;
/base/account/os_account/interfaces/kits/napi/appaccount/include/
H A Dnapi_app_account.h61 static napi_value DeleteAccountCredential(napi_env env, napi_callback_info cbInfo);
/base/account/os_account/frameworks/appaccount/native/test/unittest/
H A Dapp_account_manager_test.cpp1793 ErrCode result = AppAccountManager::DeleteAccountCredential(STRING_OUT_OF_RANGE, STRING_CREDENTIAL); in HWTEST_F()
1795 result = AppAccountManager::DeleteAccountCredential(STRING_EMPTY, STRING_CREDENTIAL); in HWTEST_F()
1797 result = AppAccountManager::DeleteAccountCredential(STRING_NAME, STRING_OUT_OF_RANGE); in HWTEST_F()
1799 result = AppAccountManager::DeleteAccountCredential(STRING_NAME, STRING_EMPTY); in HWTEST_F()
1802 result = AppAccountManager::DeleteAccountCredential(STRING_NAME, STRING_CREDENTIAL); in HWTEST_F()
/base/account/os_account/frameworks/test/unittest/
H A Daccount_appaccount_proxy_mock_test.cpp524 ErrCode result = AppAccountManager::DeleteAccountCredential(STRING_NAME, STRING_CREDENTIAL); in HWTEST_F()
/base/account/os_account/interfaces/kits/napi/appaccount/src/
H A Dnapi_app_account.cpp70 DECLARE_NAPI_FUNCTION("deleteAccountCredential", DeleteAccountCredential),
1433 napi_value NapiAppAccount::DeleteAccountCredential(napi_env env, napi_callback_info cbInfo) in DeleteAccountCredential() function in OHOS::AccountJsKit::NapiAppAccount
1454 napi_create_string_utf8(env, "DeleteAccountCredential", NAPI_AUTO_LENGTH, &resource); in DeleteCredentialInternal()
1458 context->errCode = AppAccountManager::DeleteAccountCredential( in DeleteCredentialInternal()
/base/account/os_account/frameworks/appaccount/cj/src/
H A Dappaccount_impl.cpp280 int32_t err = AppAccountManager::DeleteAccountCredential(name, credentialType); in deleteCredential()

Completed in 26 milliseconds

12