Home
last modified time | relevance | path

Searched refs:mClientCallback (Results 1 – 5 of 5) sorted by relevance

/hardware/interfaces/biometrics/fingerprint/2.2/default/
DBiometricsFingerprint.cpp53 mClientCallback = clientCallback; in setNotify()
65 mClientCallback->onError(kDeviceId, FingerprintError::ERROR_UNABLE_TO_PROCESS, in enroll()
79 mClientCallback->onError(kDeviceId, FingerprintError::ERROR_CANCELED, 0 /* vendorCode */); in cancel()
84 mClientCallback->onEnumerate(kDeviceId, 0 /* fingerId */, 0 /* groupId */, in enumerate()
90 mClientCallback->onRemoved(kDeviceId, fid, gid, 0 /* remaining */); in remove()
/hardware/interfaces/biometrics/face/1.0/default/
DBiometricsFace.cpp35 mClientCallback = clientCallback; in setCallback()
45 mClientCallback->onLockoutChanged(kLockoutDuration); in setActiveUser()
59 mClientCallback->onError(kDeviceId, mUserId, FaceError::UNABLE_TO_PROCESS, 0 /* vendorCode */); in enroll()
87 mClientCallback->onError(kDeviceId, mUserId, FaceError::CANCELED, 0 /* vendorCode */); in cancel()
92 mClientCallback->onEnumerate(kDeviceId, {}, mUserId); in enumerate()
101 mClientCallback->onError(kDeviceId, mUserId, FaceError::HW_UNAVAILABLE, 0 /* vendorCode */); in authenticate()
DBiometricsFace.h77 sp<IBiometricsFaceClientCallback> mClientCallback; variable
/hardware/interfaces/biometrics/fingerprint/2.1/default/
DBiometricsFingerprint.cpp43 BiometricsFingerprint::BiometricsFingerprint() : mClientCallback(nullptr), mDevice(nullptr) { in BiometricsFingerprint()
149 mClientCallback = clientCallback; in setNotify()
264 if (thisPtr == nullptr || thisPtr->mClientCallback == nullptr) { in notify()
274 if (!thisPtr->mClientCallback->onError(devId, result, vendorCode).isOk()) { in notify()
284 if (!thisPtr->mClientCallback->onAcquired(devId, result, vendorCode).isOk()) { in notify()
294 if (!thisPtr->mClientCallback->onEnrollResult(devId, in notify()
306 if (!thisPtr->mClientCallback->onRemoved(devId, in notify()
322 if (!thisPtr->mClientCallback->onAuthenticated(devId, in notify()
330 if (!thisPtr->mClientCallback->onAuthenticated(devId, in notify()
343 if (!thisPtr->mClientCallback->onEnumerate(devId, in notify()
DBiometricsFingerprint.h73 sp<IBiometricsFingerprintClientCallback> mClientCallback; member