Home
last modified time | relevance | path

Searched refs:GetAuthSubType (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/base/useriam/user_auth_framework/test/unittest/services/src/
H A Dcredential_info_test.cpp152 HWTEST_F(CredentialInfoTest, GetAuthSubType, TestSize.Level0)
165 HdiPinSubType ret = static_cast<HdiPinSubType>(CredentialInfoImpl.GetAuthSubType());
/ohos5.0/base/account/os_account/test/fuzztest/iamaccount/getauthsubtype_fuzzer/
H A Dgetauthsubtype_fuzzer.cpp32 int32_t result = AccountIAMClient::GetInstance().GetAuthSubType(userId); in GetAuthSubTypeFuzzTest()
/ohos5.0/base/useriam/user_auth_framework/services/core/inc/
H A Dcredential_info_interface.h36 virtual PinSubType GetAuthSubType() const = 0;
/ohos5.0/base/useriam/user_auth_framework/test/unittest/services/mocks/
H A Dmock_credential_info.h35 MOCK_CONST_METHOD0(GetAuthSubType, PinSubType());
/ohos5.0/base/useriam/user_auth_framework/services/core/src/
H A Dcredential_info_impl.h38 PinSubType GetAuthSubType() const override;
H A Dcredential_info_impl.cpp60 PinSubType CredentialInfoImpl::GetAuthSubType() const in GetAuthSubType() function in OHOS::UserIam::UserAuth::CredentialInfoImpl
/ohos5.0/base/useriam/user_auth_framework/services/context/src/
H A Dsimple_auth_context.cpp57 if (iter->GetAuthSubType() == PIN_QUESTION) { in GetPropertyTemplateIds()
62 if (iter->GetAuthSubType() != PIN_QUESTION) { in GetPropertyTemplateIds()
/ohos5.0/base/account/os_account/frameworks/account_iam/src/
H A Daccount_iam_callback_service.cpp156 authSubType = AccountIAMClient::GetInstance().GetAuthSubType(userId_); in OnGetData()
H A Daccount_iam_client.cpp499 int32_t AccountIAMClient::GetAuthSubType(int32_t userId) in GetAuthSubType() function in OHOS::AccountSA::AccountIAMClient
/ohos5.0/base/account/os_account/interfaces/innerkits/account_iam/native/include/
H A Daccount_iam_client.h285 int32_t GetAuthSubType(int32_t userId);
/ohos5.0/base/account/os_account/frameworks/account_iam/test/unittest/src/
H A Daccount_iam_client_test.cpp729 EXPECT_EQ(0, AccountIAMClient::GetInstance().GetAuthSubType(userId));
731 EXPECT_EQ(type, AccountIAMClient::GetInstance().GetAuthSubType(userId));
734 EXPECT_EQ(type, AccountIAMClient::GetInstance().GetAuthSubType(userId));
/ohos5.0/base/useriam/user_auth_framework/services/ipc/src/
H A Duser_idm_service.cpp137 info.pinType = credInfo->GetAuthSubType(); in GetCredentialInfoInner()