Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
H A DQuotaControllerTest.java669 expectedStats.sessionCountInWindow = 0; in testUpdateExecutionStatsLocked_NoTimer()
682 expectedStats.sessionCountInWindow = 1; in testUpdateExecutionStatsLocked_NoTimer()
696 expectedStats.sessionCountInWindow = 1; in testUpdateExecutionStatsLocked_NoTimer()
710 expectedStats.sessionCountInWindow = 1; in testUpdateExecutionStatsLocked_NoTimer()
723 expectedStats.sessionCountInWindow = 2; in testUpdateExecutionStatsLocked_NoTimer()
738 expectedStats.sessionCountInWindow = 3; in testUpdateExecutionStatsLocked_NoTimer()
754 expectedStats.sessionCountInWindow = 4; in testUpdateExecutionStatsLocked_NoTimer()
1268 expectedStats.sessionCountInWindow = originalStatsActive.sessionCountInWindow; in testGetExecutionStatsLocked_Caching()
1286 expectedStats.sessionCountInWindow = originalStatsWorking.sessionCountInWindow; in testGetExecutionStatsLocked_Caching()
1303 expectedStats.sessionCountInWindow = originalStatsFrequent.sessionCountInWindow; in testGetExecutionStatsLocked_Caching()
[all …]
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
H A DQuotaController.java155 public int sessionCountInWindow; field in QuotaController.ExecutionStats
205 + "sessionCountInWindow=" + sessionCountInWindow + ", " in toString()
226 && this.sessionCountInWindow == other.sessionCountInWindow in equals()
253 result = 31 * result + sessionCountInWindow; in hashCode()
939 && stats.sessionCountInWindow < stats.sessionCountLimit;
1258 stats.sessionCountInWindow = 0;
1300 int sessionCountInWindow = 0;
1367 sessionCountInWindow++;
1369 if (sessionCountInWindow >= stats.sessionCountLimit) {
1406 stats.sessionCountInWindow = sessionCountInWindow;
[all …]