Searched refs:fromSensorId (Results 1 – 5 of 5) sorted by relevance
/aosp12/frameworks/base/core/java/android/hardware/biometrics/ |
H A D | BiometricManager.java | 550 public void invalidateAuthenticatorIds(int userId, int fromSensorId, in invalidateAuthenticatorIds() argument 554 mService.invalidateAuthenticatorIds(userId, fromSensorId, callback); in invalidateAuthenticatorIds() 611 public void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId, in resetLockoutTimeBound() argument 615 mService.resetLockoutTimeBound(token, opPackageName, fromSensorId, userId, in resetLockoutTimeBound()
|
H A D | IAuthService.aidl | 66 void invalidateAuthenticatorIds(int userId, int fromSensorId, IInvalidationCallback callback); in invalidateAuthenticatorIds() argument 76 void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId, int userId, in resetLockoutTimeBound() argument
|
H A D | IBiometricService.aidl | 71 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
|
/aosp12/frameworks/base/services/core/java/com/android/server/biometrics/ |
H A D | BiometricService.java | 270 int userId, int fromSensorId, @NonNull IInvalidationCallback clientCallback) { in start() argument 271 return new InvalidationTracker(context, sensors, userId, fromSensorId, clientCallback); in start() 276 int fromSensorId, @NonNull IInvalidationCallback clientCallback) { in InvalidationTracker() argument 281 if (sensor.id == fromSensorId) { in InvalidationTracker() 844 public void invalidateAuthenticatorIds(int userId, int fromSensorId, in invalidateAuthenticatorIds() argument 848 InvalidationTracker.start(getContext(), mSensors, userId, fromSensorId, callback); in invalidateAuthenticatorIds() local 882 public void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId, in resetLockoutTimeBound() argument 887 if (!Utils.isAtLeastStrength(getSensorForId(fromSensorId).getCurrentStrength(), in resetLockoutTimeBound() 889 Slog.w(TAG, "Sensor: " + fromSensorId + " is does not meet the required strength to" in resetLockoutTimeBound() 896 if (sensor.id == fromSensorId) { in resetLockoutTimeBound() [all …]
|
H A D | AuthService.java | 345 public void invalidateAuthenticatorIds(int userId, int fromSensorId, in invalidateAuthenticatorIds() argument 351 mBiometricService.invalidateAuthenticatorIds(userId, fromSensorId, callback); in invalidateAuthenticatorIds() 389 public void resetLockoutTimeBound(IBinder token, String opPackageName, int fromSensorId, in resetLockoutTimeBound() argument 395 mBiometricService.resetLockoutTimeBound(token, opPackageName, fromSensorId, userId, in resetLockoutTimeBound()
|