Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
H A DQuotaControllerTest.java666 expectedStats.bgJobCountInWindow = 0; in testUpdateExecutionStatsLocked_NoTimer()
679 expectedStats.bgJobCountInWindow = 3; in testUpdateExecutionStatsLocked_NoTimer()
693 expectedStats.bgJobCountInWindow = 3; in testUpdateExecutionStatsLocked_NoTimer()
707 expectedStats.bgJobCountInWindow = 3; in testUpdateExecutionStatsLocked_NoTimer()
720 expectedStats.bgJobCountInWindow = 4; in testUpdateExecutionStatsLocked_NoTimer()
735 expectedStats.bgJobCountInWindow = 5; in testUpdateExecutionStatsLocked_NoTimer()
905 expectedStats.bgJobCountInWindow++; in testUpdateExecutionStatsLocked_WithTimer()
1265 expectedStats.bgJobCountInWindow = originalStatsActive.bgJobCountInWindow; in testGetExecutionStatsLocked_Caching()
1285 expectedStats.bgJobCountInWindow = originalStatsWorking.bgJobCountInWindow; in testGetExecutionStatsLocked_Caching()
1302 expectedStats.bgJobCountInWindow = originalStatsFrequent.bgJobCountInWindow; in testGetExecutionStatsLocked_Caching()
[all …]
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
H A DQuotaController.java144 public int bgJobCountInWindow; field in QuotaController.ExecutionStats
202 + "bgJobCountInWindow=" + bgJobCountInWindow + ", " in toString()
224 && this.bgJobCountInWindow == other.bgJobCountInWindow in equals()
250 result = 31 * result + bgJobCountInWindow; in hashCode()
930 && stats.bgJobCountInWindow < stats.jobCountLimit;
1255 stats.bgJobCountInWindow = 0;
1287 if (stats.bgJobCountInWindow >= stats.jobCountLimit) {
1352 stats.bgJobCountInWindow += session.bgJobCount;
1358 if (stats.bgJobCountInWindow >= stats.jobCountLimit) {
1844 if (!isUnderJobCountQuota && stats.bgJobCountInWindow < stats.jobCountLimit) {
[all …]