Home
last modified time | relevance | path

Searched refs:wouldBeReadyWithConstraintLocked (Results 1 – 7 of 7) sorted by relevance

/aosp12/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
H A DTimeControllerTest.java203 .wouldBeReadyWithConstraintLocked(eq(jobLatest), anyInt()); in testMaybeStartTrackingJobLocked_DelayInOrder_SomeNotReady()
205 .wouldBeReadyWithConstraintLocked(eq(jobMiddle), anyInt()); in testMaybeStartTrackingJobLocked_DelayInOrder_SomeNotReady()
207 .wouldBeReadyWithConstraintLocked(eq(jobEarliest), anyInt()); in testMaybeStartTrackingJobLocked_DelayInOrder_SomeNotReady()
268 .wouldBeReadyWithConstraintLocked(eq(jobLatest), anyInt()); in testMaybeStartTrackingJobLocked_DelayReverseOrder_SomeNotReady()
270 .wouldBeReadyWithConstraintLocked(eq(jobMiddle), anyInt()); in testMaybeStartTrackingJobLocked_DelayReverseOrder_SomeNotReady()
333 .wouldBeReadyWithConstraintLocked(eq(jobLatest), anyInt()); in testMaybeStartTrackingJobLocked_DeadlineInOrder_SomeNotReady()
335 .wouldBeReadyWithConstraintLocked(eq(jobMiddle), anyInt()); in testMaybeStartTrackingJobLocked_DeadlineInOrder_SomeNotReady()
404 .wouldBeReadyWithConstraintLocked(eq(jobLatest), anyInt()); in testMaybeStartTrackingJobLocked_DeadlineReverseOrder_SomeNotReady()
406 .wouldBeReadyWithConstraintLocked(eq(jobMiddle), anyInt()); in testMaybeStartTrackingJobLocked_DeadlineReverseOrder_SomeNotReady()
495 .wouldBeReadyWithConstraintLocked(eq(jobLatest), anyInt()); in testCheckExpiredDelaysAndResetAlarm_SomeNotReady()
[all …]
H A DStateControllerTest.java149 assertFalse(mStateController.wouldBeReadyWithConstraintLocked(job, 1)); in testWouldBeReadyWithConstraintLocked()
153 assertFalse(mStateController.wouldBeReadyWithConstraintLocked(job, 1)); in testWouldBeReadyWithConstraintLocked()
157 assertTrue(mStateController.wouldBeReadyWithConstraintLocked(job, 1)); in testWouldBeReadyWithConstraintLocked()
H A DConnectivityControllerTest.java471 .wouldBeReadyWithConstraintLocked(any(), eq(JobStatus.CONSTRAINT_CONNECTIVITY)); in testEvaluateStateLocked_JobWouldBeReady()
513 .wouldBeReadyWithConstraintLocked(any(), eq(JobStatus.CONSTRAINT_CONNECTIVITY)); in testEvaluateStateLocked_JobWouldNotBeReady()
582 .wouldBeReadyWithConstraintLocked(any(), eq(JobStatus.CONSTRAINT_CONNECTIVITY)); in testReevaluateStateLocked()
589 doReturn(true).when(controller).wouldBeReadyWithConstraintLocked( in testReevaluateStateLocked()
591 doReturn(false).when(controller).wouldBeReadyWithConstraintLocked( in testReevaluateStateLocked()
600 .wouldBeReadyWithConstraintLocked(any(), eq(JobStatus.CONSTRAINT_CONNECTIVITY)); in testReevaluateStateLocked()
/aosp12/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
H A DTimeController.java125 && wouldBeReadyWithConstraintLocked(job, JobStatus.CONSTRAINT_TIMING_DELAY)) { in maybeStartTrackingJobLocked()
129 && wouldBeReadyWithConstraintLocked(job, JobStatus.CONSTRAINT_DEADLINE)) { in maybeStartTrackingJobLocked()
165 } else if (wouldBeReadyWithConstraintLocked(job, JobStatus.CONSTRAINT_DEADLINE)) { in evaluateStateLocked()
177 && wouldBeReadyWithConstraintLocked(job, JobStatus.CONSTRAINT_TIMING_DELAY)) { in evaluateStateLocked()
237 if (!wouldBeReadyWithConstraintLocked(job, JobStatus.CONSTRAINT_DEADLINE)) { in checkExpiredDeadlinesAndResetAlarm()
295 if (!wouldBeReadyWithConstraintLocked(job, JobStatus.CONSTRAINT_TIMING_DELAY)) { in checkExpiredDelaysAndResetAlarm()
H A DStateController.java143 protected boolean wouldBeReadyWithConstraintLocked(JobStatus jobStatus, int constraint) { in wouldBeReadyWithConstraintLocked() method in StateController
H A DConnectivityController.java251 if (wouldBeReadyWithConstraintLocked(jobStatus, JobStatus.CONSTRAINT_CONNECTIVITY)) { in maybeStartTrackingJobLocked()
430 if (wouldBeReadyWithConstraintLocked(jobStatus, JobStatus.CONSTRAINT_CONNECTIVITY) in evaluateStateLocked()
770 if (wouldBeReadyWithConstraintLocked(job, JobStatus.CONSTRAINT_CONNECTIVITY)) { in maybeAdjustRegisteredCallbacksLocked()
/aosp12/frameworks/base/services/
H A Dart-profile21171 HSPLcom/android/server/job/controllers/StateController;->wouldBeReadyWithConstraintLocked(Lcom/andr…