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

/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java613 final long nowELAPSED = SystemClock.elapsedRealtime();
618 dumpAlarmList(pw, bz.alarms, " ", nowELAPSED, nowRTC);
837 final long nowELAPSED = SystemClock.elapsedRealtime();
842 pw.print(" nowELAPSED="); pw.println(nowELAPSED);
844 long nextWakeupRTC = mNextWakeup + (nowRTC - nowELAPSED);
845 long nextNonWakeupRTC = mNextNonWakeup + (nowRTC - nowELAPSED);
857 dumpAlarmList(pw, b.alarms, " ", nowELAPSED, nowRTC);
1006 String prefix, long nowELAPSED, long nowRTC) {
1010 long now = (a.type <= RTC) ? nowRTC : nowELAPSED;
1005 dumpAlarmList(PrintWriter pw, ArrayList<Alarm> list, String prefix, long nowELAPSED, long nowRTC) argument
1023 triggerAlarmsLocked(ArrayList<Alarm> triggerList, long nowELAPSED, long nowRTC) argument
1129 recordWakeupAlarms(ArrayList<Batch> batches, long nowELAPSED, long nowRTC) argument
[all...]

Completed in 50 milliseconds