Home
last modified time | relevance | path

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

/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
DQuotaControllerTest.java482 expectedStats.sessionCountInWindow = 0; in testUpdateExecutionStatsLocked_NoTimer()
493 expectedStats.sessionCountInWindow = 1; in testUpdateExecutionStatsLocked_NoTimer()
505 expectedStats.sessionCountInWindow = 1; in testUpdateExecutionStatsLocked_NoTimer()
517 expectedStats.sessionCountInWindow = 1; in testUpdateExecutionStatsLocked_NoTimer()
528 expectedStats.sessionCountInWindow = 2; in testUpdateExecutionStatsLocked_NoTimer()
541 expectedStats.sessionCountInWindow = 3; in testUpdateExecutionStatsLocked_NoTimer()
555 expectedStats.sessionCountInWindow = 4; in testUpdateExecutionStatsLocked_NoTimer()
568 expectedStats.sessionCountInWindow = 4; in testUpdateExecutionStatsLocked_NoTimer()
583 expectedStats.sessionCountInWindow = 5; in testUpdateExecutionStatsLocked_NoTimer()
601 expectedStats.sessionCountInWindow = 5; in testUpdateExecutionStatsLocked_NoTimer()
[all …]
/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
DQuotaController.java193 public int sessionCountInWindow; field in QuotaController.ExecutionStats
242 + "sessionCountInWindow=" + sessionCountInWindow + ", " in toString()
262 && this.sessionCountInWindow == other.sessionCountInWindow in equals()
288 result = 31 * result + sessionCountInWindow; in hashCode()
691 && stats.sessionCountInWindow < mMaxBucketSessionCounts[standbyBucket]; in isUnderSessionCountQuotaLocked()
866 stats.sessionCountInWindow = 0; in updateExecutionStatsLocked()
907 int sessionCountInWindow = 0; in updateExecutionStatsLocked() local
946 sessionCountInWindow++; in updateExecutionStatsLocked()
948 if (sessionCountInWindow >= stats.sessionCountLimit) { in updateExecutionStatsLocked()
983 stats.sessionCountInWindow = sessionCountInWindow; in updateExecutionStatsLocked()
[all …]