Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/job/controllers/
DJobStatus.java73 static final int CONSTRAINT_TIMING_DELAY = 1<<31; field in JobStatus
343 requiredConstraints |= CONSTRAINT_TIMING_DELAY; in JobStatus()
765 return (requiredConstraints&CONSTRAINT_TIMING_DELAY) != 0; in hasTimingDelayConstraint()
860 return setConstraintSatisfied(CONSTRAINT_TIMING_DELAY, state); in setTimingDelayConstraintSatisfied()
953 | CONSTRAINT_STORAGE_NOT_LOW | CONSTRAINT_TIMING_DELAY | CONSTRAINT_CONNECTIVITY
959 | CONSTRAINT_TIMING_DELAY | CONSTRAINT_IDLE;
1115 if ((constraints&CONSTRAINT_TIMING_DELAY) != 0) { in dumpConstraints()
1154 if ((constraints & CONSTRAINT_TIMING_DELAY) != 0) { in dumpConstraints()
1155 proto.write(fieldId, JobStatusDumpProto.CONSTRAINT_TIMING_DELAY); in dumpConstraints()
DTimeController.java144 (job.satisfiedConstraints&JobStatus.CONSTRAINT_TIMING_DELAY) != 0) && in canStopTrackingJobLocked()
225 } else if (!job.isConstraintSatisfied(JobStatus.CONSTRAINT_TIMING_DELAY)) { in checkExpiredDelaysAndResetAlarm()
/frameworks/base/core/proto/android/server/
Djobscheduler.proto600 CONSTRAINT_TIMING_DELAY = 4; enumerator