Home
last modified time | relevance | path

Searched refs:ResultCode (Results 1 - 25 of 192) sorted by relevance

12345678

/base/useriam/face_auth/services/src/
H A Dface_auth_executor_callback_hdi.cpp77 UserAuth::ResultCode retCode = ConvertResultCode(result); in OnResult()
102 UserAuth::ResultCode FaceAuthExecutorCallbackHdi::ConvertResultCode(const int32_t in) in ConvertResultCode()
104 ResultCode hdiIn = static_cast<ResultCode>(in); in ConvertResultCode()
105 if (hdiIn > ResultCode::VENDOR_RESULT_CODE_BEGIN) { in ConvertResultCode()
107 return static_cast<UserAuth::ResultCode>(in); in ConvertResultCode()
110 static const std::map<ResultCode, UserAuth::ResultCode> data = { in ConvertResultCode()
111 { ResultCode::SUCCESS, UserAuth::ResultCode in ConvertResultCode()
[all...]
/base/useriam/fingerprint_auth/services/src/
H A Dfingerprint_auth_executor_callback_hdi.cpp78 UserAuth::ResultCode retCode = ConvertResultCode(result); in OnResult()
106 UserAuth::ResultCode FingerprintAuthExecutorCallbackHdi::ConvertResultCode(const int32_t in) in ConvertResultCode()
108 ResultCode hdiIn = static_cast<ResultCode>(in); in ConvertResultCode()
109 if (hdiIn > ResultCode::VENDOR_RESULT_CODE_BEGIN) { in ConvertResultCode()
111 return static_cast<UserAuth::ResultCode>(in); in ConvertResultCode()
114 static const std::map<ResultCode, UserAuth::ResultCode> data = { in ConvertResultCode()
115 { ResultCode::SUCCESS, UserAuth::ResultCode in ConvertResultCode()
[all...]
/base/useriam/pin_auth/services/modules/executors/src/
H A Dpin_auth_verifier_hdi.cpp32 UserAuth::ResultCode PinAuthVerifierHdi::GetExecutorInfo(UserAuth::ExecutorInfo &info) in GetExecutorInfo()
37 return UserAuth::ResultCode::GENERAL_ERROR; in GetExecutorInfo()
41 UserAuth::ResultCode result = ConvertHdiResultCode(verifierProxy_->GetExecutorInfo(verifierInfo)); in GetExecutorInfo()
42 if (result != UserAuth::ResultCode::SUCCESS) { in GetExecutorInfo()
46 if (MoveHdiExecutorInfo(verifierInfo, info) != UserAuth::ResultCode::SUCCESS) { in GetExecutorInfo()
48 return UserAuth::ResultCode::GENERAL_ERROR; in GetExecutorInfo()
50 return UserAuth::ResultCode::SUCCESS; in GetExecutorInfo()
53 UserAuth::ResultCode PinAuthVerifierHdi::OnRegisterFinish(const std::vector<uint64_t> &templateIdList, in OnRegisterFinish()
59 return UserAuth::ResultCode::GENERAL_ERROR; in OnRegisterFinish()
62 UserAuth::ResultCode resul in OnRegisterFinish()
[all...]
H A Dpin_auth_collector_hdi.cpp32 UserAuth::ResultCode PinAuthCollectorHdi::GetExecutorInfo(UserAuth::ExecutorInfo &info) in GetExecutorInfo()
37 return UserAuth::ResultCode::GENERAL_ERROR; in GetExecutorInfo()
41 UserAuth::ResultCode result = ConvertHdiResultCode(collectorProxy_->GetExecutorInfo(collectorInfo)); in GetExecutorInfo()
42 if (result != UserAuth::ResultCode::SUCCESS) { in GetExecutorInfo()
46 if (MoveHdiExecutorInfo(collectorInfo, info) != UserAuth::ResultCode::SUCCESS) { in GetExecutorInfo()
48 return UserAuth::ResultCode::GENERAL_ERROR; in GetExecutorInfo()
50 return UserAuth::ResultCode::SUCCESS; in GetExecutorInfo()
53 UserAuth::ResultCode PinAuthCollectorHdi::OnRegisterFinish(const std::vector<uint64_t> &templateIdList, in OnRegisterFinish()
59 return UserAuth::ResultCode::GENERAL_ERROR; in OnRegisterFinish()
62 UserAuth::ResultCode resul in OnRegisterFinish()
[all...]
H A Dpin_auth_executor_hdi_common.cpp27 UserAuth::ResultCode ConvertAuthType(AuthType in, UserAuth::AuthType &out) in ConvertAuthType()
36 return UserAuth::ResultCode::GENERAL_ERROR; in ConvertAuthType()
39 return UserAuth::ResultCode::SUCCESS; in ConvertAuthType()
42 UserAuth::ResultCode ConvertExecutorRole(ExecutorRole in, UserAuth::ExecutorRole &out) in ConvertExecutorRole()
52 return UserAuth::ResultCode::GENERAL_ERROR; in ConvertExecutorRole()
55 return UserAuth::ResultCode::SUCCESS; in ConvertExecutorRole()
58 UserAuth::ResultCode ConvertExecutorSecureLevel(ExecutorSecureLevel in, UserAuth::ExecutorSecureLevel &out) in ConvertExecutorSecureLevel()
69 return UserAuth::ResultCode::GENERAL_ERROR; in ConvertExecutorSecureLevel()
72 return UserAuth::ResultCode::SUCCESS; in ConvertExecutorSecureLevel()
75 UserAuth::ResultCode MoveHdiExecutorInf
[all...]
H A Dpin_auth_all_in_one_hdi.cpp38 UserAuth::ResultCode PinAuthAllInOneHdi::GetExecutorInfo(UserAuth::ExecutorInfo &info) in GetExecutorInfo()
42 return UserAuth::ResultCode::GENERAL_ERROR; in GetExecutorInfo()
47 UserAuth::ResultCode result = ConvertHdiResultCode(status); in GetExecutorInfo()
48 if (result != UserAuth::ResultCode::SUCCESS) { in GetExecutorInfo()
54 if (ret != UserAuth::ResultCode::SUCCESS) { in GetExecutorInfo()
56 return UserAuth::ResultCode::GENERAL_ERROR; in GetExecutorInfo()
58 return UserAuth::ResultCode::SUCCESS; in GetExecutorInfo()
61 UserAuth::ResultCode PinAuthAllInOneHdi::OnRegisterFinish(const std::vector<uint64_t> &templateIdList, in OnRegisterFinish()
66 return UserAuth::ResultCode::GENERAL_ERROR; in OnRegisterFinish()
69 UserAuth::ResultCode resul in OnRegisterFinish()
[all...]
/base/useriam/user_auth_framework/frameworks/native/executors/src/framework/
H A Dframework_executor_callback.cpp56 ResultCode FrameworkExecutorCallback::OnBeginExecuteInner(uint64_t scheduleId, std::vector<uint8_t> &publicKey, in OnBeginExecuteInner()
63 IF_FALSE_LOGE_AND_RETURN_VAL(getScheduleModeRet == true, ResultCode::GENERAL_ERROR); in OnBeginExecuteInner()
66 ResultCode ret = ResultCode::GENERAL_ERROR; in OnBeginExecuteInner()
90 ResultCode FrameworkExecutorCallback::OnEndExecuteInner(uint64_t scheduleId, const Attributes &consumerAttr) in OnEndExecuteInner()
92 ResultCode ret = ProcessCancelCommand(scheduleId); in OnEndExecuteInner()
120 ResultCode FrameworkExecutorCallback::OnSetPropertyInner(const Attributes &properties) in OnSetPropertyInner()
125 IF_FALSE_LOGE_AND_RETURN_VAL(getAuthPropertyModeRet == true, ResultCode::GENERAL_ERROR); in OnSetPropertyInner()
127 ResultCode ret; in OnSetPropertyInner()
156 IF_FALSE_LOGE_AND_RETURN_VAL(getDestRoleRet == true, ResultCode in OnSendData()
[all...]
/base/useriam/face_auth/test/unittest/
H A Dface_auth_executor_callback_hdi_unit_test.cpp34 using IamResultCode = OHOS::UserIam::UserAuth::ResultCode;
78 static const std::map<ResultCode, IamResultCode> data = { { ResultCode::SUCCESS, IamResultCode::SUCCESS }, in HWTEST_F()
79 { ResultCode::FAIL, IamResultCode::FAIL }, { ResultCode::GENERAL_ERROR, IamResultCode::GENERAL_ERROR }, in HWTEST_F()
80 { ResultCode::CANCELED, IamResultCode::CANCELED }, { ResultCode::TIMEOUT, IamResultCode::TIMEOUT }, in HWTEST_F()
81 { ResultCode::BUSY, IamResultCode::BUSY }, in HWTEST_F()
82 { ResultCode::INVALID_PARAMETERS, IamResultCode::INVALID_PARAMETERS }, in HWTEST_F()
83 { ResultCode in HWTEST_F()
[all...]
/base/useriam/fingerprint_auth/test/unittest/
H A Dfingerprint_auth_executor_callback_hdi_unit_test.cpp34 using IamResultCode = OHOS::UserIam::UserAuth::ResultCode;
78 static const std::map<ResultCode, IamResultCode> data = { { ResultCode::SUCCESS, IamResultCode::SUCCESS }, in HWTEST_F()
79 { ResultCode::FAIL, IamResultCode::FAIL }, { ResultCode::GENERAL_ERROR, IamResultCode::GENERAL_ERROR }, in HWTEST_F()
80 { ResultCode::CANCELED, IamResultCode::CANCELED }, { ResultCode::TIMEOUT, IamResultCode::TIMEOUT }, in HWTEST_F()
81 { ResultCode::BUSY, IamResultCode::BUSY }, in HWTEST_F()
82 { ResultCode::INVALID_PARAMETERS, IamResultCode::INVALID_PARAMETERS }, in HWTEST_F()
83 { ResultCode in HWTEST_F()
[all...]
/base/useriam/user_auth_framework/test/unittest/executors/mock/
H A Dmock_iauth_executor_hdi.h33 MOCK_METHOD1(GetExecutorInfo, ResultCode(ExecutorInfo &info));
35 OnRegisterFinish, ResultCode(const std::vector<uint64_t> &templateIdList,
37 MOCK_METHOD1(Cancel, ResultCode(uint64_t scheduleId));
38 MOCK_METHOD3(SendMessage, ResultCode(uint64_t scheduleId, int32_t srcRole, const std::vector<uint8_t> &msg));
39 MOCK_METHOD3(Enroll, ResultCode(uint64_t scheduleId, const EnrollParam &param,
42 ResultCode(uint64_t scheduleId, const AuthenticateParam &param,
45 ResultCode(uint64_t scheduleId, const CollectParam &param,
47 MOCK_METHOD3(Identify, ResultCode(uint64_t scheduleId, const IdentifyParam &param,
49 MOCK_METHOD1(Delete, ResultCode(const std::vector<uint64_t> &templateIdList));
50 MOCK_METHOD3(SendCommand, ResultCode(PropertyMod
[all...]
/base/useriam/user_auth_framework/interfaces/inner_api/iam_executor/
H A Diam_executor_iauth_executor_hdi.h54 * @return Return the result success or error code{@link ResultCode}.
56 virtual ResultCode GetExecutorInfo(ExecutorInfo &info) = 0;
64 * @return Return the result success or error code{@link ResultCode}.
66 virtual ResultCode OnRegisterFinish(const std::vector<uint64_t> &templateIdList,
73 * @return Return the result success or error code{@link ResultCode}.
75 virtual ResultCode Cancel(uint64_t scheduleId) = 0;
83 * @return Return the result success or error code{@link ResultCode}.
85 virtual ResultCode SendMessage(uint64_t scheduleId, int32_t srcRole, const std::vector<uint8_t> &msg) = 0;
93 * @return Return the result success or error code{@link ResultCode}.
95 virtual ResultCode Enrol
[all...]
/base/useriam/user_auth_framework/frameworks/native/executors/src/async_command/
H A Dcustom_command.cpp42 ResultCode CustomCommand::SendRequest() in SendRequest()
45 IF_FALSE_LOGE_AND_RETURN_VAL(attributes_ != nullptr, ResultCode::GENERAL_ERROR); in SendRequest()
48 IF_FALSE_LOGE_AND_RETURN_VAL(hdi != nullptr, ResultCode::GENERAL_ERROR); in SendRequest()
53 IF_FALSE_LOGE_AND_RETURN_VAL(getAuthPropertyModeRet == true, ResultCode::GENERAL_ERROR); in SendRequest()
57 IF_FALSE_LOGE_AND_RETURN_VAL(getExtraInfoRet == true, ResultCode::GENERAL_ERROR); in SendRequest()
59 ResultCode ret = hdi->SendCommand(static_cast<UserAuth::PropertyMode>(commandId), extraInfo, shared_from_this()); in SendRequest()
60 if (ret != ResultCode::SUCCESS) { in SendRequest()
67 return ResultCode::SUCCESS; in SendRequest()
70 void CustomCommand::OnResultInner(ResultCode result, const std::vector<uint8_t> &extraInfo) in OnResultInner()
86 ResultCode CustomComman
[all...]
H A Dauth_command.cpp38 ResultCode AuthCommand::SendRequest() in SendRequest()
41 IF_FALSE_LOGE_AND_RETURN_VAL(attributes_ != nullptr, ResultCode::GENERAL_ERROR); in SendRequest()
44 IF_FALSE_LOGE_AND_RETURN_VAL(hdi != nullptr, ResultCode::GENERAL_ERROR); in SendRequest()
48 IF_FALSE_LOGE_AND_RETURN_VAL(getTemplateIdListRet == true, ResultCode::GENERAL_ERROR); in SendRequest()
51 IF_FALSE_LOGE_AND_RETURN_VAL(getTokenIdRet == true, ResultCode::GENERAL_ERROR); in SendRequest()
54 IF_FALSE_LOGE_AND_RETURN_VAL(getEndAfterFirstFailRet == true, ResultCode::GENERAL_ERROR); in SendRequest()
57 IF_FALSE_LOGE_AND_RETURN_VAL(getExtraInfoRet == true, ResultCode::GENERAL_ERROR); in SendRequest()
62 IF_FALSE_LOGE_AND_RETURN_VAL(getAuthIntent == true, ResultCode::GENERAL_ERROR); in SendRequest()
66 IF_FALSE_LOGE_AND_RETURN_VAL(getUserId == true, ResultCode::GENERAL_ERROR); in SendRequest()
69 ResultCode re in SendRequest()
[all...]
/base/useriam/fingerprint_auth/services/inc/
H A Dfingerprint_auth_all_in_one_executor_hdi.h41 UserAuth::ResultCode GetExecutorInfo(UserAuth::ExecutorInfo &info) override;
42 UserAuth::ResultCode OnRegisterFinish(const std::vector<uint64_t> &templateIdList,
44 UserAuth::ResultCode SendMessage(uint64_t scheduleId, int32_t srcRole, const std::vector<uint8_t> &msg) override;
45 UserAuth::ResultCode Enroll(uint64_t scheduleId, const UserAuth::EnrollParam &param,
47 UserAuth::ResultCode Authenticate(uint64_t scheduleId, const UserAuth::AuthenticateParam &param,
49 UserAuth::ResultCode Identify(uint64_t scheduleId, const UserAuth::IdentifyParam &param,
51 UserAuth::ResultCode Delete(const std::vector<uint64_t> &templateIdList) override;
52 UserAuth::ResultCode Cancel(uint64_t scheduleId) override;
53 UserAuth::ResultCode SendCommand(UserAuth::PropertyMode commandId, const std::vector<uint8_t> &extraInfo,
55 UserAuth::ResultCode GetPropert
[all...]
/base/useriam/face_auth/services/inc/
H A Dface_auth_all_in_one_executor_hdi.h41 UserAuth::ResultCode GetExecutorInfo(UserAuth::ExecutorInfo &info) override;
42 UserAuth::ResultCode OnRegisterFinish(const std::vector<uint64_t> &templateIdList,
44 UserAuth::ResultCode SendMessage(uint64_t scheduleId, int32_t srcRole, const std::vector<uint8_t> &msg) override;
45 UserAuth::ResultCode Enroll(uint64_t scheduleId, const UserAuth::EnrollParam &param,
47 UserAuth::ResultCode Authenticate(uint64_t scheduleId, const UserAuth::AuthenticateParam &param,
49 UserAuth::ResultCode Identify(uint64_t scheduleId, const UserAuth::IdentifyParam &param,
51 UserAuth::ResultCode Delete(const std::vector<uint64_t> &templateIdList) override;
52 UserAuth::ResultCode Cancel(uint64_t scheduleId) override;
53 UserAuth::ResultCode SendCommand(UserAuth::PropertyMode commandId, const std::vector<uint8_t> &extraInfo,
55 UserAuth::ResultCode GetPropert
[all...]
/base/useriam/user_auth_framework/test/fuzztest/executors/userauthdrivermanager_fuzzer/
H A Duser_auth_driver_manager_fuzzer.cpp44 ResultCode SendMessage(uint64_t scheduleId, int32_t srcRole, const std::vector<uint8_t> &msg) override
48 return ResultCode::GENERAL_ERROR;
50 return static_cast<ResultCode>(fuzzParcel_->ReadInt32());
53 ResultCode GetExecutorInfo(ExecutorInfo &executorInfo) override
59 return ResultCode::SUCCESS;
67 return static_cast<ResultCode>(fuzzParcel_->ReadInt32());
70 ResultCode OnRegisterFinish(const std::vector<uint64_t> &templateIdList,
75 return ResultCode::GENERAL_ERROR;
77 return static_cast<ResultCode>(fuzzParcel_->ReadInt32());
80 ResultCode Enrol
[all...]
/base/useriam/fingerprint_auth/services_ex/src/
H A Dsensor_illumination_task.cpp60 ResultCode GetBackgroundAlpha(int32_t currScreenBrightness, uint32_t &outAlpha) in GetBackgroundAlpha()
78 return ResultCode::SUCCESS; in GetBackgroundAlpha()
81 return ResultCode::GENERAL_ERROR; in GetBackgroundAlpha()
107 ResultCode DrawCanvas(std::shared_ptr<RSPaintFilterCanvas> canvas, const CanvasParam &param) in DrawCanvas()
109 IF_FALSE_LOGE_AND_RETURN_VAL(canvas != nullptr, ResultCode::GENERAL_ERROR); in DrawCanvas()
131 return ResultCode::SUCCESS; in DrawCanvas()
162 ResultCode SensorIlluminationTask::EnableSensorIllumination(uint32_t centerX, uint32_t centerY, uint32_t radius, in EnableSensorIllumination()
171 IF_FALSE_LOGE_AND_RETURN_VAL(rsSurfaceNode != nullptr, ResultCode::GENERAL_ERROR); in EnableSensorIllumination()
174 IF_FALSE_LOGE_AND_RETURN_VAL(defaultDisplay != nullptr, ResultCode::GENERAL_ERROR); in EnableSensorIllumination()
182 IF_FALSE_LOGE_AND_RETURN_VAL(rsSurface != nullptr, ResultCode in EnableSensorIllumination()
[all...]
/base/useriam/user_auth_framework/frameworks/native/executors/include/framework/
H A Dframework_executor_callback.h52 ResultCode OnBeginExecuteInner(uint64_t scheduleId, std::vector<uint8_t> &publicKey,
54 ResultCode OnEndExecuteInner(uint64_t scheduleId, const Attributes &consumerAttr);
55 ResultCode OnSetPropertyInner(const Attributes &properties);
56 ResultCode OnGetPropertyInner(std::shared_ptr<Attributes> conditions,
58 ResultCode ProcessEnrollCommand(uint64_t scheduleId, const Attributes &properties);
59 ResultCode ProcessAuthCommand(uint64_t scheduleId, const Attributes &properties);
60 ResultCode ProcessIdentifyCommand(uint64_t scheduleId, const Attributes &properties);
61 ResultCode ProcessCancelCommand(uint64_t scheduleId);
62 ResultCode ProcessDeleteTemplateCommand(const Attributes &properties);
63 ResultCode ProcessSetCachedTemplate
[all...]
/base/useriam/user_auth_framework/services/remote_connect/inc/
H A Dsoft_bus_manager.h43 ResultCode OpenConnection(const std::string &connectionName, const uint32_t tokenId, const std::string &networkId);
44 ResultCode CloseConnection(const std::string &connectionName);
46 ResultCode SendMessage(const std::string &connectionName,
61 ResultCode DoCloseConnection(const std::string &connectionName);
65 ResultCode RegistDeviceManagerListener();
66 ResultCode UnRegistDeviceManagerListener();
67 ResultCode RegistSoftBusListener();
68 ResultCode UnRegistSoftBusListener();
70 ResultCode DeviceInit();
72 ResultCode DoServiceSocketIni
[all...]
H A Dremote_connect_manager.h38 ResultCode OpenConnection(const std::string &connectionName,
40 ResultCode CloseConnection(const std::string &connectionName);
41 ResultCode RegisterConnectionListener(const std::string &connectionName,
43 ResultCode RegisterConnectionListener(const std::string &endPointName,
45 ResultCode UnregisterConnectionListener(const std::string &connectionName,
47 ResultCode UnregisterConnectionListener(const std::string &endPointName);
48 ResultCode SendMessage(const std::string &connectionName,
/base/useriam/user_auth_framework/frameworks/native/executors/src/
H A Diauth_executor_hdi.cpp25 ResultCode IAuthExecutorHdi::Enroll(uint64_t scheduleId, const EnrollParam &param, in Enroll()
32 ResultCode IAuthExecutorHdi::Authenticate(uint64_t scheduleId, const AuthenticateParam &param, in Authenticate()
39 ResultCode IAuthExecutorHdi::Collect(uint64_t scheduleId, const CollectParam &param, in Collect()
46 ResultCode IAuthExecutorHdi::Identify(uint64_t scheduleId, const IdentifyParam &param, in Identify()
53 ResultCode IAuthExecutorHdi::Delete(const std::vector<uint64_t> &templateIdList) in Delete()
59 ResultCode IAuthExecutorHdi::SendCommand(PropertyMode commandId, const std::vector<uint8_t> &extraInfo, in SendCommand()
66 ResultCode IAuthExecutorHdi::GetProperty(const std::vector<uint64_t> &templateIdList, in GetProperty()
73 ResultCode IAuthExecutorHdi::SetCachedTemplates(const std::vector<uint64_t> &templateIdList) in SetCachedTemplates()
79 ResultCode IAuthExecutorHdi::NotifyCollectorReady(uint64_t scheduleId) in NotifyCollectorReady()
/base/useriam/user_auth_framework/frameworks/js/napi/user_auth/src/
H A Duser_auth_callback_v6.cpp37 {ResultCode::SUCCESS, AuthenticationResult::SUCCESS},
38 {ResultCode::FAIL, AuthenticationResult::COMPARE_FAILURE},
39 {ResultCode::GENERAL_ERROR, AuthenticationResult::GENERAL_ERROR},
40 {ResultCode::CANCELED, AuthenticationResult::CANCELED},
41 {ResultCode::TIMEOUT, AuthenticationResult::TIMEOUT},
42 {ResultCode::TYPE_NOT_SUPPORT, AuthenticationResult::NO_SUPPORT},
43 {ResultCode::TRUST_LEVEL_NOT_SUPPORT, AuthenticationResult::NO_SUPPORT},
44 {ResultCode::BUSY, AuthenticationResult::BUSY},
45 {ResultCode::INVALID_PARAMETERS, AuthenticationResult::INVALID_PARAMETERS},
46 {ResultCode
[all...]
/base/useriam/user_auth_framework/frameworks/native/executors/include/async_command/
H A Dcustom_command.h30 ResultCode GetResult();
33 ResultCode SendRequest() override;
35 void OnResultInner(ResultCode result, const std::vector<uint8_t> &extraInfo) override;
39 void SetResult(ResultCode resultCode);
41 ResultCode result_ = ResultCode::GENERAL_ERROR;
/base/useriam/pin_auth/services/modules/executors/inc/
H A Dpin_auth_all_in_one_hdi.h39 UserAuth::ResultCode GetExecutorInfo(UserAuth::ExecutorInfo &info) override;
40 UserAuth::ResultCode OnRegisterFinish(const std::vector<uint64_t> &templateIdList,
42 UserAuth::ResultCode SendMessage(uint64_t scheduleId, int32_t srcRole, const std::vector<uint8_t> &msg) override;
43 UserAuth::ResultCode Enroll(uint64_t scheduleId, const UserAuth::EnrollParam &param,
45 UserAuth::ResultCode Authenticate(uint64_t scheduleId, const UserAuth::AuthenticateParam &param,
47 UserAuth::ResultCode OnSetData(uint64_t scheduleId, uint64_t authSubType, const std::vector<uint8_t> &data,
49 UserAuth::ResultCode Delete(const std::vector<uint64_t> &templateIdList) override;
50 UserAuth::ResultCode Cancel(uint64_t scheduleId) override;
51 UserAuth::ResultCode GetProperty(const std::vector<uint64_t> &templateIdList,
56 UserAuth::ResultCode ConvertAttributeKeyToPropertyTyp
[all...]
H A Dpin_auth_executor_hdi_common.h26 UserAuth::ResultCode MoveHdiExecutorInfo(ExecutorInfo &in, UserAuth::ExecutorInfo &out);
28 UserAuth::ResultCode ConvertAuthType(AuthType in, UserAuth::AuthType &out);
29 UserAuth::ResultCode ConvertExecutorRole(ExecutorRole in, UserAuth::ExecutorRole &out);
30 UserAuth::ResultCode ConvertExecutorSecureLevel(ExecutorSecureLevel in, UserAuth::ExecutorSecureLevel &out);
31 UserAuth::ResultCode ConvertHdiResultCode(int32_t in);

Completed in 13 milliseconds

12345678