Home
last modified time | relevance | path

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

/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
DQuotaControllerTest.java679 expectedStats.bgJobCountInWindow = 0; in testUpdateExecutionStatsLocked_NoTimer()
692 expectedStats.bgJobCountInWindow = 3; in testUpdateExecutionStatsLocked_NoTimer()
706 expectedStats.bgJobCountInWindow = 3; in testUpdateExecutionStatsLocked_NoTimer()
720 expectedStats.bgJobCountInWindow = 3; in testUpdateExecutionStatsLocked_NoTimer()
733 expectedStats.bgJobCountInWindow = 4; in testUpdateExecutionStatsLocked_NoTimer()
748 expectedStats.bgJobCountInWindow = 5; in testUpdateExecutionStatsLocked_NoTimer()
764 expectedStats.bgJobCountInWindow = 10; in testUpdateExecutionStatsLocked_NoTimer()
779 expectedStats.bgJobCountInWindow = 10; in testUpdateExecutionStatsLocked_NoTimer()
796 expectedStats.bgJobCountInWindow = 15; in testUpdateExecutionStatsLocked_NoTimer()
816 expectedStats.bgJobCountInWindow = 15; in testUpdateExecutionStatsLocked_NoTimer()
[all …]
/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
DQuotaController.java147 public int bgJobCountInWindow; field in QuotaController.ExecutionStats
205 + "bgJobCountInWindow=" + bgJobCountInWindow + ", " in toString()
227 && this.bgJobCountInWindow == other.bgJobCountInWindow in equals()
253 result = 31 * result + bgJobCountInWindow; in hashCode()
958 && stats.bgJobCountInWindow < stats.jobCountLimit; in isUnderJobCountQuotaLocked()
1282 stats.bgJobCountInWindow = 0; in updateExecutionStatsLocked()
1302 stats.bgJobCountInWindow = stats.bgJobCountInMaxPeriod = timer.getBgJobCount(); in updateExecutionStatsLocked()
1314 if (stats.bgJobCountInWindow >= stats.jobCountLimit) { in updateExecutionStatsLocked()
1379 stats.bgJobCountInWindow += session.bgJobCount; in updateExecutionStatsLocked()
1385 if (stats.bgJobCountInWindow >= stats.jobCountLimit) { in updateExecutionStatsLocked()
[all …]