Home
last modified time | relevance | path

Searched refs:authenticatorProxy_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/base/account/os_account/services/accountmgr/src/appaccount/
H A Dapp_account_authenticator_session.cpp143 if ((authenticatorProxy_ != nullptr) && (authenticatorProxy_->AsObject() != nullptr)) { in Close()
144 authenticatorProxy_->AsObject()->RemoveDeathRecipient(serverDeathRecipient_); in Close()
181 authenticatorProxy_ = iface_cast<IAppAccountAuthenticator>(remoteObject); in OnAbilityConnectDone()
182 if ((!authenticatorProxy_) || (!authenticatorProxy_->AsObject())) { in OnAbilityConnectDone()
186 authenticatorProxy_->AsObject()->AddDeathRecipient(serverDeathRecipient_); in OnAbilityConnectDone()
189 …resultCode = authenticatorProxy_->AddAccountImplicitly(request_.authType, request_.callerBundleNam… in OnAbilityConnectDone()
197 resultCode = authenticatorProxy_->CreateAccountImplicitly(request_.createOptions, in OnAbilityConnectDone()
201 resultCode = authenticatorProxy_->Auth( in OnAbilityConnectDone()
205 resultCode = authenticatorProxy_->VerifyCredential( in OnAbilityConnectDone()
209 resultCode = authenticatorProxy_->CheckAccountLabels( in OnAbilityConnectDone()
[all …]
/ohos5.0/base/account/os_account/services/accountmgr/test/moduletest/app_account/
H A Dapp_account_authenticator_session_module_test.cpp120 appAccountAuthenticatorSessionPtr_->authenticatorProxy_ =
122 ASSERT_NE(nullptr, appAccountAuthenticatorSessionPtr_->authenticatorProxy_);
123 ASSERT_NE(nullptr, appAccountAuthenticatorSessionPtr_->authenticatorProxy_->AsObject());
/ohos5.0/base/account/os_account/services/accountmgr/include/appaccount/
H A Dapp_account_authenticator_session.h103 sptr<IAppAccountAuthenticator> authenticatorProxy_ = nullptr; variable