Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/job/
DJobSchedulerService.java334 private final KeyValueListParser.IntValue mMaxBg; field in JobSchedulerService.MaxJobCounts
340 mMaxBg = new KeyValueListParser.IntValue(maxBgKey, maxBgDefault); in MaxJobCounts()
346 mMaxBg.parse(parser); in parse()
355 if (mMaxBg.getValue() < 1) { in parse()
356 mMaxBg.setValue(1); in parse()
357 } else if (mMaxBg.getValue() > mTotal.getValue()) { in parse()
358 mMaxBg.setValue(mTotal.getValue()); in parse()
363 if (mMinBg.getValue() > mMaxBg.getValue()) { in parse()
364 mMinBg.setValue(mMaxBg.getValue()); in parse()
379 return mMaxBg.getValue(); in getMaxBg()
[all …]