Home
last modified time | relevance | path

Searched refs:AuthCommonInterface (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/authentication/unittest/
H A Dauth_common_mock.h34 class AuthCommonInterface {
36 AuthCommonInterface() {}; in AuthCommonInterface() function
37 virtual ~AuthCommonInterface() {}; in ~AuthCommonInterface()
62 class AuthCommonInterfaceMock : public AuthCommonInterface {
H A Dauth_common_mock.cpp33 static AuthCommonInterface *GetCommonInterface() in GetCommonInterface()
/ohos5.0/base/account/os_account/frameworks/domain_account/src/
H A Ddomain_account_plugin_service.cpp44 ErrCode DomainAccountPluginService::AuthCommonInterface(const DomainAccountInfo &info, in AuthCommonInterface() function in OHOS::AccountSA::DomainAccountPluginService
80 return AuthCommonInterface(info, password, callback, AUTH_WITH_CREDENTIAL_MODE); in Auth()
86 return AuthCommonInterface(info, {}, callback, AUTH_WITH_POPUP_MODE); in AuthWithPopup()
92 return AuthCommonInterface(info, token, callback, AUTH_WITH_TOKEN_MODE); in AuthWithToken()
/ohos5.0/base/account/os_account/services/accountmgr/src/domain_account/
H A Ddomain_account_plugin_proxy.cpp64 ErrCode DomainAccountPluginProxy::AuthCommonInterface(const DomainAccountInfo &info, in AuthCommonInterface() function in OHOS::AccountSA::DomainAccountPluginProxy
115 return AuthCommonInterface(info, password, callback, AUTH_WITH_CREDENTIAL_MODE); in Auth()
146 return AuthCommonInterface(info, {}, callback, AUTH_WITH_POPUP_MODE); in AuthWithPopup()
152 return AuthCommonInterface(info, token, callback, AUTH_WITH_TOKEN_MODE); in AuthWithToken()
/ohos5.0/base/account/os_account/frameworks/domain_account/test/moduletest/src/
H A Ddomain_account_plugin_service_test.cpp75 EXPECT_EQ(pluginServie_->AuthCommonInterface(info, authData, nullptr, AUTH_WITH_TOKEN_MODE),
91 …EXPECT_EQ(pluginServie->AuthCommonInterface(info, authData, nullptr, AUTH_WITH_TOKEN_MODE), ERR_OK…
106 EXPECT_EQ(pluginServie->AuthCommonInterface(info, authData, nullptr, AUTH_MODE_END),
H A Dmock_domain_plugin.cpp44 void MockDomainPlugin::AuthCommonInterface(const DomainAccountInfo &info, const std::vector<uint8_t… in AuthCommonInterface() function in OHOS::AccountSA::MockDomainPlugin
99 AuthCommonInterface(info, password, callback, AUTH_WITH_CREDENTIAL_MODE); in Auth()
105 AuthCommonInterface(info, {}, callback, AUTH_WITH_POPUP_MODE); in AuthWithPopup()
111 AuthCommonInterface(info, token, callback, AUTH_WITH_TOKEN_MODE); in AuthWithToken()
/ohos5.0/base/account/os_account/frameworks/domain_account/test/moduletest/include/
H A Dmock_domain_plugin.h47 void AuthCommonInterface(const DomainAccountInfo &info, const std::vector<uint8_t> &authData,
/ohos5.0/base/account/os_account/frameworks/domain_account/include/
H A Ddomain_account_plugin_service.h52 ErrCode AuthCommonInterface(const DomainAccountInfo &info, const std::vector<uint8_t> &authData,
/ohos5.0/base/account/os_account/services/accountmgr/include/domain_account/
H A Ddomain_account_plugin_proxy.h50 ErrCode AuthCommonInterface(const DomainAccountInfo &info, const std::vector<uint8_t> &password,
/ohos5.0/base/account/os_account/services/accountmgr/test/unittest/domain_account/
H A Ddomain_account_plugin_proxy_test.cpp79 EXPECT_EQ(pluginProxy_->AuthCommonInterface(info, authData, nullptr, AUTH_WITH_TOKEN_MODE),