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

/frameworks/base/services/java/com/android/server/
H A DWatchdog.java110 int mReqMinNextAlarm = -1; // >= 0 if specific time to next alarm has been requested
190 PowerManagerService power, AlarmManagerService alarm,
195 mAlarm = alarm;
233 if (localLOGV) Slog.v(TAG, "No need to schedule a reboot alarm!");
269 // Schedule alarm for next check interval.
282 // Schedule next alarm either within the window or in the
291 // Schedule alarm for next check interval.
298 if (localLOGV) Slog.v(TAG, "Scheduling next reboot alarm for "
346 return "alarm";
189 init(Context context, BatteryService battery, PowerManagerService power, AlarmManagerService alarm, ActivityManagerService activity) argument
H A DAlarmManagerService.java63 // The threshold for how long an alarm can be late before we print a
189 // now that we have initied the driver schedule the alarm
198 Slog.w(TAG, "Failed to open alarm driver. Falling back to a handler.");
221 Alarm alarm = new Alarm();
222 alarm.type = type;
223 alarm.when = triggerAtTime;
224 alarm.repeatInterval = interval;
225 alarm.operation = operation;
227 // Remove this alarm if already scheduled.
230 if (localLOGV) Slog.v(TAG, "set: " + alarm);
438 addAlarmLocked(Alarm alarm) argument
482 setLocked(Alarm alarm) argument
[all...]

Completed in 2068 milliseconds