Searched defs:alarm (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
H A DAlarmManagerService.java89 // Mask for testing whether a given alarm type is wakeup vs non-wakeup
142 * For each uid, this is the last time we dispatched an "allow while idle" alarm,
143 * used to determine the earliest we can dispatch the next such alarm.
184 // Minimum futurity of a new alarm
187 // Minimum alarm recurrence interval
354 boolean add(Alarm alarm) { argument
356 // narrows the batch if necessary; presumes that canHold(alarm) is true
357 int index = Collections.binarySearch(alarms, alarm, sIncreasingTimeOrder);
361 alarms.add(index, alarm);
363 Slog.v(TAG, "Adding " + alarm
[all...]

Completed in 31 milliseconds