Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
H A DJobStatusTest.java35 import static com.android.server.job.controllers.JobStatus.CONSTRAINT_CONTENT_TRIGGER;
760 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CONTENT_TRIGGER)); in testWouldBeReadyWithConstraint_NonRequestedConstraints()
922 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CONTENT_TRIGGER)); in testWouldBeReadyWithConstraint_RequestedContentTrigger()
924 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CONTENT_TRIGGER)); in testWouldBeReadyWithConstraint_RequestedContentTrigger()
1006 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CONTENT_TRIGGER)); in testWouldBeReadyWithConstraint_RequestedMixture_NoDeadline()
1020 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CONTENT_TRIGGER)); in testWouldBeReadyWithConstraint_RequestedMixture_NoDeadline()
1068 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CONTENT_TRIGGER)); in testWouldBeReadyWithConstraint_RequestedMixture_WithDeadline()
1086 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CONTENT_TRIGGER)); in testWouldBeReadyWithConstraint_RequestedMixture_WithDeadline()
1096 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CONTENT_TRIGGER)); in testWouldBeReadyWithConstraint_RequestedMixture_WithDeadline()
1104 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CONTENT_TRIGGER)); in testWouldBeReadyWithConstraint_RequestedMixture_WithDeadline()
[all …]
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
H A DJobStatus.java122 public static final int CONSTRAINT_CONTENT_TRIGGER = 1 << 26; field in JobStatus
200 private static final int STATSD_CONSTRAINTS_TO_LOG = CONSTRAINT_CONTENT_TRIGGER
648 requiredConstraints |= CONSTRAINT_CONTENT_TRIGGER; in JobStatus()
1485 return (requiredConstraints&CONSTRAINT_CONTENT_TRIGGER) != 0; in hasContentTriggerConstraint()
1949 case CONSTRAINT_CONTENT_TRIGGER: in constraintToStopReason()
2003 if ((CONSTRAINT_CONTENT_TRIGGER & unsatisfiedConstraints) != 0) { in getPendingJobReason()
2113 constraints &= ~CONSTRAINT_CONTENT_TRIGGER; in addDynamicConstraints()
2458 if ((constraints & CONSTRAINT_CONTENT_TRIGGER) != 0) { in dumpConstraints()
2494 case CONSTRAINT_CONTENT_TRIGGER: in getProtoConstraint()
2495 return JobServerProtoEnums.CONSTRAINT_CONTENT_TRIGGER; in getProtoConstraint()
[all …]
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/
H A DJobServiceContext.java499 job.isConstraintSatisfied(JobStatus.CONSTRAINT_CONTENT_TRIGGER), in executeRunnableJob()
1560 completedJob.isConstraintSatisfied(JobStatus.CONSTRAINT_CONTENT_TRIGGER), in closeAndCleanupJobLocked()
H A DJobSchedulerService.java2219 cancelled.isConstraintSatisfied(JobStatus.CONSTRAINT_CONTENT_TRIGGER),