Searched refs:mLastOpScheduleExactAlarm (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/apex/jobscheduler/service/java/com/android/server/alarm/ |
D | AlarmManagerService.java | 274 SparseIntArray mLastOpScheduleExactAlarm = new SparseIntArray(); field in AlarmManagerService 1973 mLastOpScheduleExactAlarm.put(uid, mode); in onUserStarting() 2028 final int index = mLastOpScheduleExactAlarm.indexOfKey(uid); in onBootPhase() 2032 mLastOpScheduleExactAlarm.put(uid, newMode); in onBootPhase() 2034 oldMode = mLastOpScheduleExactAlarm.valueAt(index); in onBootPhase() 2035 mLastOpScheduleExactAlarm.setValueAt(index, newMode); in onBootPhase() 3165 for (int i = 0; i < mLastOpScheduleExactAlarm.size(); i++) { in dumpImpl() 3169 UserHandle.formatUid(pw, mLastOpScheduleExactAlarm.keyAt(i)); in dumpImpl() 3170 pw.print(":" + AppOpsManager.modeToName(mLastOpScheduleExactAlarm.valueAt(i))); in dumpImpl() 4051 for (int i = mLastOpScheduleExactAlarm.size() - 1; i >= 0; i--) { in removeUserLocked() [all …]
|
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/alarm/ |
D | AlarmManagerServiceTest.java | 2983 mService.mLastOpScheduleExactAlarm.put(TEST_CALLING_UID, MODE_ALLOWED); 2997 mService.mLastOpScheduleExactAlarm.put(TEST_CALLING_UID, MODE_ALLOWED); 3014 mService.mLastOpScheduleExactAlarm.put(TEST_CALLING_UID, MODE_ERRORED); 3178 assertEquals(appIds.length, mService.mLastOpScheduleExactAlarm.size()); 3181 assertEquals(appOpModes[i], mService.mLastOpScheduleExactAlarm.get(uid, -1)); 3183 assertTrue(mService.mLastOpScheduleExactAlarm.indexOfKey(
|