Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/hardware/biometrics/
DIAuthService.aidl79 void invalidateAuthenticatorIds(int userId, int fromSensorId, IInvalidationCallback callback); in invalidateAuthenticatorIds() argument
89 void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId, int userId, in resetLockoutTimeBound() argument
DIBiometricService.aidl84 void invalidateAuthenticatorIds(int userId, int fromSensorId, IInvalidationCallback callback); in invalidateAuthenticatorIds() argument
94 void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId, int userId, in resetLockoutTimeBound() argument
DBiometricManager.java609 public void invalidateAuthenticatorIds(int userId, int fromSensorId, in invalidateAuthenticatorIds() argument
613 mService.invalidateAuthenticatorIds(userId, fromSensorId, callback); in invalidateAuthenticatorIds()
670 public void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId, in resetLockoutTimeBound() argument
674 mService.resetLockoutTimeBound(token, opPackageName, fromSensorId, userId, in resetLockoutTimeBound()
/frameworks/base/services/core/java/com/android/server/biometrics/
DBiometricService.java154 int userId, int fromSensorId, @NonNull IInvalidationCallback clientCallback) { in start() argument
155 return new InvalidationTracker(context, sensors, userId, fromSensorId, clientCallback); in start()
160 int fromSensorId, @NonNull IInvalidationCallback clientCallback) { in InvalidationTracker() argument
165 if (sensor.id == fromSensorId) { in InvalidationTracker()
764 public void invalidateAuthenticatorIds(int userId, int fromSensorId,
769 InvalidationTracker.start(getContext(), mSensors, userId, fromSensorId, callback);
806 public void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId,
812 if (!Utils.isAtLeastStrength(getSensorForId(fromSensorId).getCurrentStrength(),
814 Slog.w(TAG, "Sensor: " + fromSensorId + " is does not meet the required strength to"
821 if (sensor.id == fromSensorId) {
[all …]
DAuthService.java467 public void invalidateAuthenticatorIds(int userId, int fromSensorId, in invalidateAuthenticatorIds() argument
473 mBiometricService.invalidateAuthenticatorIds(userId, fromSensorId, callback); in invalidateAuthenticatorIds()
511 public void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId, in resetLockoutTimeBound() argument
517 mBiometricService.resetLockoutTimeBound(token, opPackageName, fromSensorId, userId, in resetLockoutTimeBound()