/frameworks/base/services/core/java/com/android/server/locksettings/ |
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()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
D | Utils.kt | 106 sensorIds: IntArray in isManagedProfile() 107 ): T? = properties?.firstOrNull { sensorIds.contains(it.sensorId) } in isManagedProfile()
|
D | AuthController.java | 884 int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument 891 for (int sensorId : sensorIds) { in showAuthenticationDialog() 905 args.arg3 = sensorIds; in showAuthenticationDialog() 1110 final int[] sensorIds = (int[]) args.arg3; in showDialog() local 1125 sensorIds, in showDialog() 1218 PromptInfo promptInfo, boolean requireConfirmation, int userId, int[] sensorIds, in buildDialog() argument 1236 .build(bgExecutor, sensorIds, mFpProps, mFaceProps, wakefulnessLifecycle, in buildDialog()
|
D | AuthContainerView.java | 226 public AuthContainerView build(@Background DelayableExecutor bgExecutor, int[] sensorIds, in build() argument 233 mConfig.mSensorIds = sensorIds; in build()
|
/frameworks/base/core/java/android/hardware/biometrics/ |
D | PromptInfo.java | 197 public void setAllowedSensorIds(@NonNull List<Integer> sensorIds) { in setAllowedSensorIds() argument 199 mAllowedSensorIds.addAll(sensorIds); in setAllowedSensorIds()
|
D | BiometricPrompt.java | 367 public Builder setAllowedSensorIds(@NonNull List<Integer> sensorIds) { in setAllowedSensorIds() argument 368 mPromptInfo.setAllowedSensorIds(sensorIds); in setAllowedSensorIds()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | CommandQueueTest.java | 437 final int[] sensorIds = {1, 2}; in testShowAuthenticationDialog() local 446 mCommandQueue.showAuthenticationDialog(promptInfo, receiver, sensorIds, in testShowAuthenticationDialog() 450 verify(mCallbacks).showAuthenticationDialog(eq(promptInfo), eq(receiver), eq(sensorIds), in testShowAuthenticationDialog()
|
/frameworks/base/core/java/com/android/internal/statusbar/ |
D | IStatusBar.aidl | 158 in int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, int userId, in showAuthenticationDialog() argument
|
D | IStatusBarService.aidl | 123 in int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ |
D | AuthControllerTest.java | 906 private void showDialog(int[] sensorIds, boolean credentialAllowed) { in showDialog() argument 909 sensorIds, in showDialog() local 975 boolean requireConfirmation, int userId, int[] sensorIds, in buildDialog() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | CommandQueue.java | 316 int[] sensorIds, boolean credentialAllowed, in showAuthenticationDialog() argument 949 int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument 956 args.arg3 = sensorIds; in showAuthenticationDialog()
|
/frameworks/base/services/core/java/com/android/server/statusbar/ |
D | StatusBarManagerService.java | 901 int[] sensorIds, boolean credentialAllowed, boolean requireConfirmation, in showAuthenticationDialog() argument 907 mBar.showAuthenticationDialog(promptInfo, receiver, sensorIds, credentialAllowed, in showAuthenticationDialog()
|