Lines Matching refs:cb

28     void generateChallengeImpl(ISessionCallback* cb) {  in generateChallengeImpl()  argument
32 cb->onChallengeGenerated(challenge); in generateChallengeImpl()
35 void revokeChallengeImpl(ISessionCallback* cb, int64_t challenge) { in revokeChallengeImpl() argument
37 cb->onChallengeRevoked(challenge); in revokeChallengeImpl()
40 void enrollImpl(ISessionCallback* cb, const keymaster::HardwareAuthToken& hat) { in enrollImpl() argument
44 cb->onError(Error::UNABLE_TO_PROCESS, 0 /* vendorError */); in enrollImpl()
47 cb->onEnrollmentProgress(0 /* enrollmentId */, 0 /* remaining */); in enrollImpl()
50 void authenticateImpl(ISessionCallback* cb, int64_t /* operationId */) { in authenticateImpl() argument
52 cb->onAuthenticationSucceeded(0 /* enrollmentId */, {} /* hat */); in authenticateImpl()
55 void detectInteractionImpl(ISessionCallback* cb) { in detectInteractionImpl() argument
57 cb->onInteractionDetected(); in detectInteractionImpl()
60 void enumerateEnrollmentsImpl(ISessionCallback* cb) { in enumerateEnrollmentsImpl() argument
62 cb->onEnrollmentsEnumerated({} /* enrollmentIds */); in enumerateEnrollmentsImpl()
65 void removeEnrollmentsImpl(ISessionCallback* cb, const std::vector<int32_t>& enrollmentIds) { in removeEnrollmentsImpl() argument
67 cb->onEnrollmentsRemoved(enrollmentIds); in removeEnrollmentsImpl()
70 void getAuthenticatorIdImpl(ISessionCallback* cb) { in getAuthenticatorIdImpl() argument
72 cb->onAuthenticatorIdRetrieved(0 /* authenticatorId */); in getAuthenticatorIdImpl()
75 void invalidateAuthenticatorIdImpl(ISessionCallback* cb) { in invalidateAuthenticatorIdImpl() argument
77 cb->onAuthenticatorIdInvalidated(0 /* newAuthenticatorId */); in invalidateAuthenticatorIdImpl()
80 void resetLockoutImpl(ISessionCallback* cb, const keymaster::HardwareAuthToken& /*hat*/) { in resetLockoutImpl() argument
82 cb->onLockoutCleared(); in resetLockoutImpl()