Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/hardware/biometrics/
H A DIAuthService.aidl69 void invalidateAuthenticatorIds(int userId, int fromSensorId, IInvalidationCallback callback); in invalidateAuthenticatorIds() argument
79 void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId, int userId, in resetLockoutTimeBound() argument
H A DIBiometricService.aidl80 void invalidateAuthenticatorIds(int userId, int fromSensorId, IInvalidationCallback callback); in invalidateAuthenticatorIds() argument
90 void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId, int userId, in resetLockoutTimeBound() argument
H A DBiometricManager.java549 public void invalidateAuthenticatorIds(int userId, int fromSensorId, in invalidateAuthenticatorIds() argument
553 mService.invalidateAuthenticatorIds(userId, fromSensorId, callback); in invalidateAuthenticatorIds()
610 public void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId, in resetLockoutTimeBound() argument
614 mService.resetLockoutTimeBound(token, opPackageName, fromSensorId, userId, in resetLockoutTimeBound()
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/
H A DBiometricService.java144 int userId, int fromSensorId, @NonNull IInvalidationCallback clientCallback) { in start() argument
145 return new InvalidationTracker(context, sensors, userId, fromSensorId, clientCallback); in start()
150 int fromSensorId, @NonNull IInvalidationCallback clientCallback) { in InvalidationTracker() argument
155 if (sensor.id == fromSensorId) { in InvalidationTracker()
708 public void invalidateAuthenticatorIds(int userId, int fromSensorId,
713 InvalidationTracker.start(getContext(), mSensors, userId, fromSensorId, callback);
750 public void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId,
756 if (!Utils.isAtLeastStrength(getSensorForId(fromSensorId).getCurrentStrength(),
758 Slog.w(TAG, "Sensor: " + fromSensorId + " is does not meet the required strength to"
765 if (sensor.id == fromSensorId) {
[all …]
H A DAuthService.java360 public void invalidateAuthenticatorIds(int userId, int fromSensorId, in invalidateAuthenticatorIds() argument
366 mBiometricService.invalidateAuthenticatorIds(userId, fromSensorId, callback); in invalidateAuthenticatorIds()
404 public void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId, in resetLockoutTimeBound() argument
410 mBiometricService.resetLockoutTimeBound(token, opPackageName, fromSensorId, userId, in resetLockoutTimeBound()