Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
H A DQuotaControllerTest.java648 expectedStats.bgJobCountInWindow = 0; in testUpdateExecutionStatsLocked_NoTimer()
661 expectedStats.bgJobCountInWindow = 3; in testUpdateExecutionStatsLocked_NoTimer()
675 expectedStats.bgJobCountInWindow = 3; in testUpdateExecutionStatsLocked_NoTimer()
689 expectedStats.bgJobCountInWindow = 3; in testUpdateExecutionStatsLocked_NoTimer()
702 expectedStats.bgJobCountInWindow = 4; in testUpdateExecutionStatsLocked_NoTimer()
717 expectedStats.bgJobCountInWindow = 5; in testUpdateExecutionStatsLocked_NoTimer()
885 expectedStats.bgJobCountInWindow++; in testUpdateExecutionStatsLocked_WithTimer()
1242 expectedStats.bgJobCountInWindow = originalStatsActive.bgJobCountInWindow; in testGetExecutionStatsLocked_Caching()
1261 expectedStats.bgJobCountInWindow = originalStatsWorking.bgJobCountInWindow; in testGetExecutionStatsLocked_Caching()
1277 expectedStats.bgJobCountInWindow = originalStatsFrequent.bgJobCountInWindow; in testGetExecutionStatsLocked_Caching()
[all …]
/aosp12/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
H A DQuotaController.java191 public int bgJobCountInWindow; field in QuotaController.ExecutionStats
247 + "bgJobCountInWindow=" + bgJobCountInWindow + ", " in toString()
268 && this.bgJobCountInWindow == other.bgJobCountInWindow in equals()
293 result = 31 * result + bgJobCountInWindow; in hashCode()
929 && (stats.bgJobCountInWindow < mMaxBucketJobCounts[standbyBucket]);
1226 stats.bgJobCountInWindow = 0;
1257 if (stats.bgJobCountInWindow >= stats.jobCountLimit) {
1295 stats.bgJobCountInWindow += session.bgJobCount;
1301 if (stats.bgJobCountInWindow >= stats.jobCountLimit) {
1751 if (!isUnderJobCountQuota && stats.bgJobCountInWindow < stats.jobCountLimit) {
[all …]