Home
last modified time | relevance | path

Searched refs:IdentificationImpl (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/useriam/user_auth_framework/services/core/src/
H A Didentification_impl.cpp26 IdentificationImpl::IdentificationImpl(uint64_t contextId, AuthType authType) in IdentificationImpl() function in OHOS::UserIam::UserAuth::IdentificationImpl
32 IdentificationImpl::~IdentificationImpl() in ~IdentificationImpl()
37 void IdentificationImpl::SetLatestError(int32_t error) in SetLatestError()
44 int32_t IdentificationImpl::GetLatestError() const in GetLatestError()
49 void IdentificationImpl::SetExecutor(uint32_t executorIndex) in SetExecutor()
54 void IdentificationImpl::SetChallenge(const std::vector<uint8_t> &challenge) in SetChallenge()
59 void IdentificationImpl::SetAccessTokenId(uint32_t tokenId) in SetAccessTokenId()
64 uint32_t IdentificationImpl::GetAccessTokenId() const in GetAccessTokenId()
69 bool IdentificationImpl::Start(std::vector<std::shared_ptr<ScheduleNode>> &scheduleList, in Start()
103 bool IdentificationImpl::Update(const std::vector<uint8_t> &scheduleResult, IdentifyResultInfo &res… in Update()
[all …]
H A Didentification_impl.h28 class IdentificationImpl final : public Identification, public NoCopyable {
30 IdentificationImpl(uint64_t contextId, AuthType authType);
31 ~IdentificationImpl() override;
/ohos5.0/base/useriam/user_auth_framework/test/unittest/services/src/
H A Didentification_impl_test.cpp65 auto identification = std::make_shared<IdentificationImpl>(contextId, FACE);
76 auto enrollment = std::make_shared<IdentificationImpl>(contextId, FACE);
88 auto identification = std::make_shared<IdentificationImpl>(contextId, FACE);
110 auto identification = std::make_shared<IdentificationImpl>(contextId, FACE);
150 auto identification = std::make_shared<IdentificationImpl>(contextId, FACE);
/ohos5.0/base/useriam/user_auth_framework/services/context/src/
H A Dcontext_factory.cpp52 auto identify = Common::MakeShared<IdentificationImpl>(newContextId, para.authType); in CreateIdentifyContext()