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

/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java53 // The threshold for how long an alarm can be late before we print a
132 // now that we have initied the driver schedule the alarm
141 Log.w(TAG, "Failed to open alarm driver. Falling back to a handler.");
164 Alarm alarm = new Alarm();
165 alarm.type = type;
166 alarm.when = triggerAtTime;
167 alarm.repeatInterval = interval;
168 alarm.operation = operation;
170 // Remove this alarm if already scheduled.
173 if (localLOGV) Log.v(TAG, "set: " + alarm);
344 addAlarmLocked(Alarm alarm) argument
388 setLocked(Alarm alarm) argument
[all...]
H A DWatchdog.java140 int mReqMinNextAlarm = -1; // >= 0 if specific time to next alarm has been requested
399 PowerManagerService power, AlarmManagerService alarm,
404 mAlarm = alarm;
517 // tear things down... schedule an alarm to check again soon.
537 if (localLOGV) Log.v(TAG, "Scheduling next memcheck alarm for "
542 if (localLOGV) Log.v(TAG, "No need to schedule a memcheck alarm!");
605 if (localLOGV) Log.v(TAG, "No need to schedule a reboot alarm!");
647 // Schedule alarm for next check interval.
660 // Schedule next alarm either within the window or in the
669 // Schedule alarm fo
398 init(Context context, BatteryService battery, PowerManagerService power, AlarmManagerService alarm, ActivityManagerService activity) argument
[all...]

Completed in 203 milliseconds