Home
last modified time | relevance | path

Searched refs:UserAuthClientImpl (Results 1 – 11 of 11) sorted by relevance

/base/useriam/user_auth_framework/frameworks/native/client/
Duser_auth_client_map18 OHOS::UserIam::UserAuth::UserAuthClientImpl::Instance*;
19 OHOS::UserIam::UserAuth::UserAuthClientImpl::BeginNorthAuthentication*;
20 OHOS::UserIam::UserAuth::UserAuthClientImpl::BeginWidgetAuth*;
21 OHOS::UserIam::UserAuth::UserAuthClientImpl::GetVersion*;
22 OHOS::UserIam::UserAuth::UserAuthClientImpl::GetAvailableStatus*;
23 OHOS::UserIam::UserAuth::UserAuthClientImpl::SetWidgetCallback*;
24 OHOS::UserIam::UserAuth::UserAuthClientImpl::Notice*;
/base/useriam/user_auth_framework/frameworks/native/client/src/
Duser_auth_client_impl.cpp80 int32_t UserAuthClientImpl::GetAvailableStatus(AuthType authType, AuthTrustLevel authTrustLevel) in GetAvailableStatus()
86 int32_t UserAuthClientImpl::GetAvailableStatus(int32_t apiVersion, AuthType authType, AuthTrustLeve… in GetAvailableStatus()
98 void UserAuthClientImpl::GetProperty(int32_t userId, const GetPropertyRequest &request, in GetProperty()
126 ResultCode UserAuthClientImpl::SetPropertyInner(int32_t userId, const SetPropertyRequest &request, in SetPropertyInner()
158 void UserAuthClientImpl::SetProperty(int32_t userId, const SetPropertyRequest &request, in SetProperty()
176 uint64_t UserAuthClientImpl::BeginAuthentication(int32_t userId, const std::vector<uint8_t> &challe… in BeginAuthentication()
203 uint64_t UserAuthClientImpl::BeginNorthAuthentication(int32_t apiVersion, const std::vector<uint8_t… in BeginNorthAuthentication()
238 int32_t UserAuthClientImpl::CancelAuthentication(uint64_t contextId) in CancelAuthentication()
250 uint64_t UserAuthClientImpl::BeginIdentification(const std::vector<uint8_t> &challenge, AuthType au… in BeginIdentification()
277 int32_t UserAuthClientImpl::CancelIdentification(uint64_t contextId) in CancelIdentification()
[all …]
/base/useriam/user_auth_framework/frameworks/native/client/inc/
Duser_auth_client_impl.h30 class UserAuthClientImpl final : public UserAuthClient, NoCopyable {
32 static UserAuthClientImpl& Instance();
58 UserAuthClientImpl() = default;
59 ~UserAuthClientImpl() override = default;
/base/useriam/user_auth_framework/test/unittest/inner_api/src/
Duser_auth_client_test.cpp50 int32_t ret = UserAuthClientImpl::Instance().GetAvailableStatus(testAuthType, testAtl);
76 …int32_t ret = UserAuthClientImpl::Instance().GetAvailableStatus(testApiVersion, testAuthType, test…
191 …uint64_t contextId = UserAuthClientImpl::Instance().BeginNorthAuthentication(testApiVersion, testC…
199 … contextId = UserAuthClientImpl::Instance().BeginNorthAuthentication(testApiVersion, testChallenge,
239 …uint64_t contextId = UserAuthClientImpl::Instance().BeginNorthAuthentication(testApiVersion, testC…
435 int32_t ret = UserAuthClientImpl::Instance().GetVersion(version);
459 int32_t result = UserAuthClientImpl::Instance().GetVersion(version);
487 EXPECT_EQ(UserAuthClientImpl::Instance().GetVersion(version), GENERAL_ERROR);
488 EXPECT_EQ(UserAuthClientImpl::Instance().GetVersion(version), GENERAL_ERROR);
489 EXPECT_EQ(UserAuthClientImpl::Instance().GetVersion(version), GENERAL_ERROR);
[all …]
/base/useriam/user_auth_framework/test/fuzztest/clients/userauthclient_fuzzer/
Duser_auth_client_fuzzer.cpp102 UserAuthClientImpl::Instance().GetAvailableStatus(authType, atl); in FuzzClientGetAvailableStatus()
152UserAuthClientImpl::Instance().BeginNorthAuthentication(apiVersion, challenge, authType, atl, call… in FuzzClientBeginAuthentication002()
188 UserAuthClientImpl::Instance().GetVersion(version); in FuzzClientGetVersion()
209 UserAuthClientImpl::Instance().BeginWidgetAuth(apiVersion, authParam, widgetParam, callback); in FuzzBeginWidgetAuth()
218 UserAuthClientImpl::Instance().SetWidgetCallback(version, callback); in FuzzSetWidgetCallback()
227 UserAuthClientImpl::Instance().Notice(noticeType, eventData); in FuzzNotice()
/base/useriam/user_auth_framework/frameworks/js/napi/user_auth/src/
Duser_auth_impl.cpp39 int32_t result = UserAuthClientImpl::Instance().GetVersion(version); in GetVersion()
73 …int32_t status = UserAuthClientImpl::Instance().GetAvailableStatus(API_VERSION_8, authType, authTr… in GetAvailableStatus()
127UserAuthClientImpl::Instance().BeginNorthAuthentication(API_VERSION_6, challenge, FACE, authTrustL… in Execute()
226 …uint64_t result = UserAuthClientImpl::Instance().BeginNorthAuthentication(API_VERSION_8, challenge, in Auth()
Dauth_instance_v9.cpp70 …int32_t status = UserAuthClientImpl::Instance().GetAvailableStatus(API_VERSION_9, authType, authTr… in GetAvailableStatus()
267 contextId_ = UserAuthClientImpl::Instance().BeginNorthAuthentication(API_VERSION_9, in Start()
Duser_auth_widget_mgr_v10.cpp75 int32_t result = UserAuthClientImpl::Instance().SetWidgetCallback(version_, callback_); in Init()
Duser_auth_instance_v10.cpp384 contextId_ = UserAuthClientImpl::Instance().BeginWidgetAuth(API_VERSION_10, in Start()
Duser_auth_entry.cpp493 int32_t result = UserAuthClientImpl::Instance().Notice(noticeType, eventData); in SendNotice()
/base/account/os_account/services/accountmgr/src/account_iam/
Dinner_account_iam_manager.cpp39 using UserAuthClientImpl = UserIam::UserAuth::UserAuthClientImpl; typedef
225 status = UserAuthClientImpl::Instance().GetAvailableStatus(authType, authTrustLevel); in GetAvailableStatus()