/frameworks/base/services/core/java/com/android/server/locksettings/ |
D | BiometricDeferredQueue.java | 87 @NonNull Set<Integer> sensorIds; // IDs of sensors waiting for challenge field in BiometricDeferredQueue.FaceResetLockoutTask 94 @NonNull Set<Integer> sensorIds, in FaceResetLockoutTask() argument 99 this.sensorIds = sensorIds; in FaceResetLockoutTask() 105 if (!sensorIds.contains(sensorId)) { in onGenerateChallengeResult() 121 sensorIds.remove(sensorId); in onGenerateChallengeResult() 124 if (sensorIds.isEmpty()) { in onGenerateChallengeResult() 248 final Set<Integer> sensorIds = new ArraySet<>(); in processPendingLockoutsForFace() local 250 sensorIds.add(prop.sensorId); in processPendingLockoutsForFace() 254 mSpManager, sensorIds, pendingResetLockouts); in processPendingLockoutsForFace()
|
/frameworks/base/packages/SystemUI/shared/biometrics/src/com/android/systemui/biometrics/ |
D | Utils.kt | 111 sensorIds: IntArray in isManagedProfile() 112 ): T? = properties?.firstOrNull { sensorIds.contains(it.sensorId) } in isManagedProfile()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
D | AuthController.java | 916 int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument 922 for (int sensorId : sensorIds) { in showAuthenticationDialog() 935 args.arg3 = sensorIds; in showAuthenticationDialog() 1209 final int[] sensorIds = (int[]) args.arg3; in showDialog() local 1226 sensorIds, in showDialog() 1306 PromptInfo promptInfo, boolean requireConfirmation, int userId, int[] sensorIds, in buildDialog() argument 1323 config.mSensorIds = sensorIds; in buildDialog()
|
/frameworks/base/core/java/android/hardware/biometrics/ |
D | PromptInfo.java | 297 public void setAllowedSensorIds(@NonNull List<Integer> sensorIds) { in setAllowedSensorIds() argument 299 mAllowedSensorIds.addAll(sensorIds); in setAllowedSensorIds()
|
D | BiometricPrompt.java | 528 public Builder setAllowedSensorIds(@NonNull List<Integer> sensorIds) { in setAllowedSensorIds() argument 529 mPromptInfo.setAllowedSensorIds(sensorIds); in setAllowedSensorIds()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | CommandQueueTest.java | 478 final int[] sensorIds = {1, 2}; in testShowAuthenticationDialog() local 486 mCommandQueue.showAuthenticationDialog(promptInfo, receiver, sensorIds, in testShowAuthenticationDialog() 489 verify(mCallbacks).showAuthenticationDialog(eq(promptInfo), eq(receiver), eq(sensorIds), in testShowAuthenticationDialog()
|
/frameworks/base/core/java/com/android/internal/statusbar/ |
D | IStatusBar.aidl | 183 in int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, int userId, in showAuthenticationDialog() argument
|
D | IStatusBarService.aidl | 125 in int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/biometrics/ |
D | AuthControllerTest.java | 986 private void showDialog(int[] sensorIds, boolean credentialAllowed) { in showDialog() argument 989 sensorIds, in showDialog() local 1071 boolean requireConfirmation, int userId, int[] sensorIds, in buildDialog() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | CommandQueue.java | 360 int[] sensorIds, boolean credentialAllowed, in showAuthenticationDialog() argument 1070 int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument 1076 args.arg3 = sensorIds; in showAuthenticationDialog()
|
/frameworks/base/services/core/java/com/android/server/statusbar/ |
D | StatusBarManagerService.java | 1076 int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument 1081 mBar.showAuthenticationDialog(promptInfo, receiver, sensorIds, credentialAllowed, in showAuthenticationDialog()
|