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

/frameworks/base/services/java/com/android/server/
H A DWatchdog.java108 int mReqMinNextAlarm = -1; // >= 0 if specific time to next alarm has been requested
188 PowerManagerService power, AlarmManagerService alarm,
193 mAlarm = alarm;
231 if (localLOGV) Slog.v(TAG, "No need to schedule a reboot alarm!");
267 // Schedule alarm for next check interval.
280 // Schedule next alarm either within the window or in the
289 // Schedule alarm for next check interval.
296 if (localLOGV) Slog.v(TAG, "Scheduling next reboot alarm for "
344 return "alarm";
187 init(Context context, BatteryService battery, PowerManagerService power, AlarmManagerService alarm, ActivityManagerService activity) argument
H A DAlarmManagerService.java59 // The threshold for how long an alarm can be late before we print a
142 // now that we have initied the driver schedule the alarm
151 Slog.w(TAG, "Failed to open alarm driver. Falling back to a handler.");
174 Alarm alarm = new Alarm();
175 alarm.type = type;
176 alarm.when = triggerAtTime;
177 alarm.repeatInterval = interval;
178 alarm.operation = operation;
180 // Remove this alarm if already scheduled.
183 if (localLOGV) Slog.v(TAG, "set: " + alarm);
391 addAlarmLocked(Alarm alarm) argument
435 setLocked(Alarm alarm) argument
[all...]

Completed in 410 milliseconds