Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
H A DJobStatusTest.java236 assertFalse(job.wouldBeReadyWithConstraint(CONSTRAINT_CHARGING)); in testWouldBeReadyWithConstraint_NonRequestedConstraints()
246 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CHARGING)); in testWouldBeReadyWithConstraint_NonRequestedConstraints()
266 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CHARGING)); in testWouldBeReadyWithConstraint_RequestedCharging()
268 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CHARGING)); in testWouldBeReadyWithConstraint_RequestedCharging()
272 assertFalse(job.wouldBeReadyWithConstraint(CONSTRAINT_CHARGING)); in testWouldBeReadyWithConstraint_RequestedCharging()
274 assertFalse(job.wouldBeReadyWithConstraint(CONSTRAINT_CHARGING)); in testWouldBeReadyWithConstraint_RequestedCharging()
504 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CHARGING)); in testWouldBeReadyWithConstraint_RequestedMixture_NoDeadline()
511 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CHARGING)); in testWouldBeReadyWithConstraint_RequestedMixture_NoDeadline()
568 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CHARGING)); in testWouldBeReadyWithConstraint_RequestedMixture_WithDeadline()
578 assertTrue(job.wouldBeReadyWithConstraint(CONSTRAINT_CHARGING)); in testWouldBeReadyWithConstraint_RequestedMixture_WithDeadline()
[all …]
/aosp12/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
H A DJobStatus.java85 static final int CONSTRAINT_CHARGING = JobInfo.CONSTRAINT_FLAG_CHARGING; // 1 < 0 field in JobStatus
111 | CONSTRAINT_CHARGING
991 return hasConstraint(CONSTRAINT_CHARGING); in hasChargingConstraint()
1000 return hasConstraint(CONSTRAINT_CHARGING | CONSTRAINT_BATTERY_NOT_LOW); in hasPowerConstraint()
1144 return setConstraintSatisfied(CONSTRAINT_CHARGING, nowElapsed, state); in setChargingConstraintSatisfied()
1298 case CONSTRAINT_CHARGING: in constraintToStopReason()
1684 if ((constraints&CONSTRAINT_CHARGING) != 0) { in dumpConstraints()
1734 case CONSTRAINT_CHARGING: in getProtoConstraint()
1735 return JobServerProtoEnums.CONSTRAINT_CHARGING; in getProtoConstraint()
1759 if ((constraints & CONSTRAINT_CHARGING) != 0) { in dumpConstraints()
[all …]
/aosp12/frameworks/proto_logging/stats/enums/server/job/
H A Denums.proto32 CONSTRAINT_CHARGING = 1; enumerator