Home
last modified time | relevance | path

Searched refs:CONSTRAINT_PREFETCH (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
H A DPrefetchControllerTest.java305 assertFalse(job.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintNotSatisfiedWhenLaunchLate()
321 assertTrue(job.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenLaunchSoon()
344 assertTrue(jobPending.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenTop()
346 assertTrue(jobRunning.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenTop()
355 assertTrue(jobRunning.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenTop()
360 assertTrue(jobPending.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenTop()
362 assertTrue(jobRunning.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenTop()
392 assertTrue(jobWidget.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenWidget()
411 assertTrue(jobStatus.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testEstimatedLaunchTimeChangedToLate()
450 assertTrue(jobStatus.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testEstimatedLaunchTimeChangedToSoon()
[all …]
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
H A DJobStatus.java125 static final int CONSTRAINT_PREFETCH = 1 << 23; field in JobStatus
202 | CONSTRAINT_PREFETCH
644 requiredConstraints |= CONSTRAINT_PREFETCH; in JobStatus()
1707 return setConstraintSatisfied(CONSTRAINT_PREFETCH, nowElapsed, state); in setPrefetchConstraintSatisfied()
1941 case CONSTRAINT_PREFETCH: in constraintToStopReason()
2022 if ((CONSTRAINT_PREFETCH & unsatisfiedConstraints) != 0) { in getPendingJobReason()
2251 | CONSTRAINT_IDLE | CONSTRAINT_CONTENT_TRIGGER | CONSTRAINT_PREFETCH
2257 | CONSTRAINT_TIMING_DELAY | CONSTRAINT_IDLE | CONSTRAINT_PREFETCH
2467 if ((constraints & CONSTRAINT_PREFETCH) != 0) { in dumpConstraints()
2504 case CONSTRAINT_PREFETCH: in getProtoConstraint()
[all …]