Home
last modified time | relevance | path

Searched refs:shouldCancel (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Permission/PermissionController/tests/mocking/src/com/android/permissioncontroller/tests/mocking/privacysources/
DAccessibilitySourceServiceTest.kt60 private var shouldCancel = false variable in com.android.permissioncontroller.tests.mocking.privacysources.AccessibilitySourceServiceTest
83 shouldCancel = false in cleanup()
90 shouldCancel = true in processAccessibilityJobWithCancellation()
96 shouldCancel in processAccessibilityJobWithCancellation()
DNotificationListenerCheckInternalTest.kt82 private var shouldCancel = false variable in com.android.permissioncontroller.tests.mocking.privacysources.NotificationListenerCheckInternalTest
104 NotificationListenerCheckInternal(context) { shouldCancel } in setup()
114 shouldCancel = false in cleanup()
120 shouldCancel = true in getEnabledNotificationListenersAndNotifyIfNeeded_shouldCancel_finishJob_reschedule()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/privacysources/
DNotificationListenerCheck.kt195 private val shouldCancel: BooleanSupplier? constant
862 if (shouldCancel != null && shouldCancel.asBoolean) { in throwInterruptedExceptionIfTaskIsCanceled()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/service/
DLocationAccessCheck.java398 public LocationAccessCheck(@NonNull Context context, @Nullable BooleanSupplier shouldCancel) { in LocationAccessCheck() argument
406 mShouldCancel = shouldCancel; in LocationAccessCheck()