/aosp12/frameworks/base/services/core/java/com/android/server/locksettings/ |
H A D | BiometricDeferredQueue.java | 84 @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()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
H A D | AuthController.java | 574 int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument 581 for (int sensorId : sensorIds) { in showAuthenticationDialog() 595 args.arg3 = sensorIds; in showAuthenticationDialog() 771 final int[] sensorIds = (int[]) args.arg3; in showDialog() local 785 sensorIds, in showDialog() 869 int userId, int[] sensorIds, boolean credentialAllowed, String opPackageName, in buildDialog() argument 882 .build(sensorIds, credentialAllowed, mFpProps, mFaceProps); in buildDialog()
|
H A D | AuthContainerView.java | 188 public AuthContainerView build(int[] sensorIds, boolean credentialAllowed, in build() argument 191 mConfig.mSensorIds = sensorIds; in build()
|
/aosp12/frameworks/base/core/java/android/hardware/biometrics/ |
H A D | PromptInfo.java | 190 public void setAllowedSensorIds(@NonNull List<Integer> sensorIds) { in setAllowedSensorIds() argument 191 mAllowedSensorIds = sensorIds; in setAllowedSensorIds()
|
H A D | BiometricPrompt.java | 366 public Builder setAllowedSensorIds(@NonNull List<Integer> sensorIds) { in setAllowedSensorIds() argument 367 mPromptInfo.setAllowedSensorIds(sensorIds); in setAllowedSensorIds()
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
H A D | CommandQueueTest.java | 431 final int[] sensorIds = {1, 2}; in testShowAuthenticationDialog() local 440 mCommandQueue.showAuthenticationDialog(promptInfo, receiver, sensorIds, in testShowAuthenticationDialog() 444 verify(mCallbacks).showAuthenticationDialog(eq(promptInfo), eq(receiver), eq(sensorIds), in testShowAuthenticationDialog()
|
/aosp12/frameworks/base/core/java/com/android/internal/statusbar/ |
H A D | IStatusBar.aidl | 151 in int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, int userId, in showAuthenticationDialog() argument
|
H A D | IStatusBarService.aidl | 112 in int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ |
H A D | AuthControllerTest.java | 630 private void showDialog(int[] sensorIds, boolean credentialAllowed) { in showDialog() argument 633 sensorIds, in showDialog() local 685 boolean requireConfirmation, int userId, int[] sensorIds, boolean credentialAllowed, in buildDialog() argument
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | CommandQueue.java | 294 int[] sensorIds, boolean credentialAllowed, in showAuthenticationDialog() argument 860 int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument 867 args.arg3 = sensorIds; in showAuthenticationDialog()
|
/aosp12/frameworks/base/services/core/java/com/android/server/statusbar/ |
H A D | StatusBarManagerService.java | 788 int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument 794 mBar.showAuthenticationDialog(promptInfo, receiver, sensorIds, credentialAllowed, in showAuthenticationDialog()
|