Home
last modified time | relevance | path

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

/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
H A DJobStatus.java103 private static final int NUM_CONSTRAINT_CHANGE_HISTORY = 10; field in JobStatus
493 private final long[] mConstraintUpdatedTimesElapsed = new long[NUM_CONSTRAINT_CHANGE_HISTORY];
494 private final int[] mConstraintStatusHistory = new int[NUM_CONSTRAINT_CHANGE_HISTORY];
1878 (mConstraintChangeHistoryIndex + 1) % NUM_CONSTRAINT_CHANGE_HISTORY; in setConstraintSatisfied()
2770 for (int h = 0; h < NUM_CONSTRAINT_CHANGE_HISTORY; ++h) { in dump()
2771 final int idx = (h + mConstraintChangeHistoryIndex) % NUM_CONSTRAINT_CHANGE_HISTORY; in dump()