Home
last modified time | relevance | path

Searched refs:sensorIds (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/services/core/java/com/android/server/locksettings/
DBiometricDeferredQueue.java84 @NonNull Set<Integer> sensorIds; // IDs of sensors waiting for challenge field in BiometricDeferredQueue.FaceResetLockoutTask
91 @NonNull Set<Integer> sensorIds, in FaceResetLockoutTask() argument
96 this.sensorIds = sensorIds; in FaceResetLockoutTask()
102 if (!sensorIds.contains(sensorId)) { in onGenerateChallengeResult()
118 sensorIds.remove(sensorId); in onGenerateChallengeResult()
121 if (sensorIds.isEmpty()) { in onGenerateChallengeResult()
230 final Set<Integer> sensorIds = new ArraySet<>(); in processPendingLockoutsForFace() local
232 sensorIds.add(prop.sensorId); in processPendingLockoutsForFace()
236 mSpManager, sensorIds, pendingResetLockouts); in processPendingLockoutsForFace()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DAuthController.java503 int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument
510 for (int sensorId : sensorIds) { in showAuthenticationDialog()
523 args.arg3 = sensorIds; in showAuthenticationDialog()
680 final int[] sensorIds = (int[]) args.arg3; in showDialog() local
693 sensorIds, in showDialog()
774 int userId, int[] sensorIds, boolean credentialAllowed, String opPackageName, in buildDialog() argument
786 .build(sensorIds, credentialAllowed, mFpProps, mFaceProps); in buildDialog()
DAuthContainerView.java181 public AuthContainerView build(int[] sensorIds, boolean credentialAllowed, in build() argument
184 mConfig.mSensorIds = sensorIds; in build()
/frameworks/base/core/java/android/hardware/biometrics/
DPromptInfo.java187 public void setAllowedSensorIds(@NonNull List<Integer> sensorIds) { in setAllowedSensorIds() argument
188 mAllowedSensorIds = sensorIds; in setAllowedSensorIds()
DBiometricPrompt.java366 public Builder setAllowedSensorIds(@NonNull List<Integer> sensorIds) { in setAllowedSensorIds() argument
367 mPromptInfo.setAllowedSensorIds(sensorIds); in setAllowedSensorIds()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DCommandQueueTest.java422 final int[] sensorIds = {1, 2}; in testShowAuthenticationDialog() local
430 mCommandQueue.showAuthenticationDialog(promptInfo, receiver, sensorIds, in testShowAuthenticationDialog()
434 verify(mCallbacks).showAuthenticationDialog(eq(promptInfo), eq(receiver), eq(sensorIds), in testShowAuthenticationDialog()
/frameworks/base/core/java/com/android/internal/statusbar/
DIStatusBar.aidl150 in int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, int userId, in showAuthenticationDialog() argument
DIStatusBarService.aidl112 in int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
DAuthControllerTest.java561 private void showDialog(int[] sensorIds, boolean credentialAllowed) { in showDialog() argument
564 sensorIds, in showDialog() local
614 boolean requireConfirmation, int userId, int[] sensorIds, boolean credentialAllowed, in buildDialog() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DCommandQueue.java292 int[] sensorIds, boolean credentialAllowed, in showAuthenticationDialog() argument
845 int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument
852 args.arg3 = sensorIds; in showAuthenticationDialog()
/frameworks/base/services/core/java/com/android/server/statusbar/
DStatusBarManagerService.java785 int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument
791 mBar.showAuthenticationDialog(promptInfo, receiver, sensorIds, credentialAllowed, in showAuthenticationDialog()