Home
last modified time | relevance | path

Searched refs:authenticate (Results 1 – 14 of 14) sorted by relevance

/hardware/interfaces/biometrics/fingerprint/2.1/
DIBiometricsFingerprint.hal79 @callflow(next={"authenticate", "setActiveGroup", "enumerate", "remove"})
91 @callflow(next={"authenticate"})
95 * Cancel pending enroll or authenticate, sending FINGERPRINT_ERROR_CANCELED
101 @callflow(next={"authenticate", "enroll", "enumerate", "remove",
116 @callflow(next={"remove", "enroll", "authenticate", "setActiveGroup"})
135 @callflow(next={"enumerate", "authenticate", "cancel", "getAuthenticatorId",
149 @callflow(next={"authenticate", "preEnroll", "enumerate", "remove"})
162 authenticate(uint64_t operationId, uint32_t gid)
/hardware/invensense/65xx/libsensors_iio/software/core/mpl/build/
Dfilelist.mk10 HEADERS += $(MPL_DIR)/authenticate.h
29 SOURCES += $(MPL_DIR)/authenticate.c
/hardware/invensense/6515/libsensors_iio/software/core/mpl/build/
Dfilelist.mk10 HEADERS += $(MPL_DIR)/authenticate.h
29 SOURCES += $(MPL_DIR)/authenticate.c
/hardware/libhardware/tests/fingerprint/
Dfingerprint_tests.cpp48 ASSERT_TRUE(NULL != fp_device()->authenticate) in TEST_F()
/hardware/interfaces/biometrics/face/1.0/
DIBiometricsFace.hal66 @callflow(next={"authenticate", "generateChallenge", "enumerate", "remove"})
139 @callflow(next={"authenticate", "setActiveUser", "enumerate", "remove"})
194 @callflow(next={"authenticate"})
198 * Cancels the current enroll, authenticate, remove, or enumerate operation.
202 @callflow(next={"authenticate", "enroll", "enumerate", "remove",
214 @callflow(next={"remove", "enroll", "authenticate", "setActiveUser"})
227 @callflow(next={"enumerate", "authenticate", "cancel", "getAuthenticatorId",
245 authenticate(uint64_t operationId) generates (Status status);
Dtypes.hal90 * The current enroll or authenticate operation could not be completed,
117 * request (authenticate, remove, enumerate, enroll) is initiated while
DIBiometricsFaceClientCallback.hal47 * authenticate operation.
/hardware/libhardware/include/hardware/
Dfingerprint.h261 int (*authenticate)(struct fingerprint_device *dev, uint64_t operation_id, uint32_t gid); member
/hardware/interfaces/biometrics/fingerprint/2.1/default/
DBiometricsFingerprint.h62 Return<RequestStatus> authenticate(uint64_t operationId, uint32_t gid) override;
DBiometricsFingerprint.cpp202 Return<RequestStatus> BiometricsFingerprint::authenticate(uint64_t operationId, in authenticate() function in android::hardware::biometrics::fingerprint::V2_1::implementation::BiometricsFingerprint
204 return ErrorFilter(mDevice->authenticate(mDevice, operationId, gid)); in authenticate()
/hardware/libhardware/modules/fingerprint/
Dfingerprint.c102 dev->authenticate = fingerprint_authenticate; in fingerprint_open()
/hardware/interfaces/gatekeeper/1.0/
DIGatekeeper.hal69 * @param challenge An optional challenge to authenticate against, or 0.
/hardware/interfaces/wifi/supplicant/1.0/
DISupplicantStaIfaceCallback.hal56 * to authenticate with and the driver is configured to try to
57 * authenticate with this BSS. This state is used only with drivers
/hardware/interfaces/biometrics/fingerprint/2.1/vts/functional/
DVtsHalBiometricsFingerprintV2_1TargetTest.cpp420 Return<RequestStatus> res = mService->authenticate(0, kGroupId); in TEST_P()