Home
last modified time | relevance | path

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

/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphRunner.java349 long maxPriority = PRIORITY_STOP; in onStep() local
355 if (priority > maxPriority) { in onStep()
356 maxPriority = priority; in onStep()
360 if (maxPriority == PRIORITY_SLEEP) { in onStep()
367 } else if (maxPriority == PRIORITY_STOP) { in onStep()
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
H A DJobStatus.java1318 final int maxPriority; in getEffectivePriority() local
1321 maxPriority = JobInfo.PRIORITY_HIGH; in getEffectivePriority()
1323 maxPriority = JobInfo.PRIORITY_MAX; in getEffectivePriority()
1325 final int rawPriority = Math.min(maxPriority, job.getPriority()); in getEffectivePriority()