Home
last modified time | relevance | path

Searched refs:coAuthSchedule (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/drivers/peripheral/user_auth/hdi_service/coauth/src/
H A Dcoauth.c55 if (coAuthSchedule == NULL || !IsTemplateArraysValid(&(coAuthSchedule->templateIds))) { in CopyCoAuthSchedule()
82 if (coAuthSchedule == NULL) { in DestroyCoAuthSchedule()
85 DestroyScheduleNode(coAuthSchedule); in DestroyCoAuthSchedule()
111 if (coAuthSchedule == NULL) { in AddCoAuthSchedule()
244 coAuthSchedule->executors[coAuthSchedule->executorSize] = *executor; in MountExecutorOnce()
245 ++(coAuthSchedule->executorSize); in MountExecutorOnce()
306 if (coAuthSchedule == NULL) { in GetScheduleVerifierSensorHint()
327 if (coAuthSchedule == NULL) { in GenerateSchedule()
333 Free(coAuthSchedule); in GenerateSchedule()
358 return coAuthSchedule; in GenerateSchedule()
[all …]
/ohos5.0/drivers/peripheral/user_auth/hdi_service/user_auth/src/
H A Dauth_level.c50 IAM_STATIC ResultCode QueryScheduleAsl(const CoAuthSchedule *coAuthSchedule, uint32_t *asl) in QueryScheduleAsl() argument
52 if (coAuthSchedule == NULL || asl == NULL || coAuthSchedule->executorSize == 0) { in QueryScheduleAsl()
58 for (uint32_t i = 0; i < coAuthSchedule->executorSize; ++i) { in QueryScheduleAsl()
59 uint32_t esl = coAuthSchedule->executors[i].esl; in QueryScheduleAsl()
67 ResultCode QueryScheduleAtl(const CoAuthSchedule *coAuthSchedule, uint32_t acl, uint32_t *atl) in QueryScheduleAtl() argument
69 if (coAuthSchedule == NULL || atl == NULL) { in QueryScheduleAtl()
74 ResultCode ret = QueryScheduleAsl(coAuthSchedule, &asl); in QueryScheduleAtl()
/ohos5.0/drivers/peripheral/user_auth/hdi_service/coauth/inc/
H A Dcoauth.h87 ResultCode AddCoAuthSchedule(const CoAuthSchedule *coAuthSchedule);
90 uint32_t GetScheduleVerifierSensorHint(const CoAuthSchedule *coAuthSchedule);
91 void DestroyCoAuthSchedule(CoAuthSchedule *coAuthSchedule);
92 CoAuthSchedule *CopyCoAuthSchedule(const CoAuthSchedule *coAuthSchedule);
/ohos5.0/drivers/peripheral/user_auth/hdi_service/user_auth/inc/
H A Dauth_level.h30 ResultCode QueryScheduleAtl(const CoAuthSchedule *coAuthSchedule, uint32_t acl, uint32_t *atl);
/ohos5.0/drivers/peripheral/user_auth/test/unittest/user_auth_test/
H A Dauth_level_test.cpp26 extern ResultCode QueryScheduleAsl(const CoAuthSchedule *coAuthSchedule, uint32_t *asl);
/ohos5.0/drivers/peripheral/user_auth/test/unittest/co_auth/
H A Dco_auth_test.cpp29 extern ResultCode MountExecutorOnce(const LinkedList *executors, CoAuthSchedule *coAuthSchedule,
32 extern ResultCode MountExecutor(const ScheduleParam *param, CoAuthSchedule *coAuthSchedule);
/ohos5.0/drivers/peripheral/user_auth/hdi_service/service/
H A Duser_auth_interface_service.cpp531 auto coAuthSchedule = static_cast<CoAuthSchedule *>(tempNode->data); in BeginAuthentication() local
532 if (!CopyAuthScheduleInfo(paramHal, coAuthSchedule, &temp)) { in BeginAuthentication()