Home
last modified time | relevance | path

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

/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
DPrefetchControllerTest.java306 assertFalse(job.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintNotSatisfiedWhenLaunchLate()
322 assertTrue(job.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenLaunchSoon()
345 assertTrue(jobPending.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenTop()
347 assertTrue(jobRunning.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenTop()
354 assertFalse(jobPending.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenTop()
356 assertTrue(jobRunning.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenTop()
361 assertTrue(jobPending.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenTop()
363 assertTrue(jobRunning.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenTop()
387 assertFalse(jobNonWidget.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenWidget()
393 assertTrue(jobWidget.isConstraintSatisfied(JobStatus.CONSTRAINT_PREFETCH)); in testConstraintSatisfiedWhenWidget()
[all …]
/frameworks/proto_logging/stats/enums/server/job/
Denums.proto45 CONSTRAINT_PREFETCH = 14; enumerator
/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
DJobStatus.java122 static final int CONSTRAINT_PREFETCH = 1 << 23; field in JobStatus
196 | CONSTRAINT_PREFETCH
678 requiredConstraints |= CONSTRAINT_PREFETCH; in JobStatus()
1823 return setConstraintSatisfied(CONSTRAINT_PREFETCH, nowElapsed, state); in setPrefetchConstraintSatisfied()
2029 case CONSTRAINT_PREFETCH: in constraintToStopReason()
2114 if ((CONSTRAINT_PREFETCH & unsatisfiedConstraints) != 0) { in getPendingJobReason()
2333 | CONSTRAINT_IDLE | CONSTRAINT_CONTENT_TRIGGER | CONSTRAINT_PREFETCH
2339 | CONSTRAINT_TIMING_DELAY | CONSTRAINT_IDLE | CONSTRAINT_PREFETCH
2549 if ((constraints & CONSTRAINT_PREFETCH) != 0) { in dumpConstraints()
2583 case CONSTRAINT_PREFETCH: in getProtoConstraint()
[all …]