HomeSort by relevance Sort by last modified time
    Searched defs:Alarm (Results 1 - 6 of 6) sorted by null

  /external/chromium/base/threading/
watchdog_unittest.cc 30 virtual void Alarm() {
32 Watchdog::Alarm();
76 // Make sure a basic alarm fires when the time has expired.
85 // Make sure a basic alarm fires when the time has expired.
97 // Make sure a disable alarm does nothing, even if we arm it.
101 // Alarm should not fire, as it was disabled.
112 PlatformThread::Sleep(100); // Sleep a bit, but not past the alarm point.
122 // Alarm should not have fired before it was disarmed.
130 // ...but even after disarming, we can still use the alarm...
watchdog.cc 72 void Watchdog::Alarm() {
96 // We overslept, so this seems like a real alarm.
97 // Watch out for a user that stopped the debugger on a different alarm!
101 // False alarm: we started our clock before the debugger break (last
102 // alarm time).
110 watchdog_->state_ = DISARMED; // Only alarm at most once.
112 watchdog_->Alarm(); // Set a break point here to debug on alarms.
  /packages/apps/Launcher2/src/com/android/launcher2/
Alarm.java 21 public class Alarm implements Runnable{
22 // if we reach this time and the alarm hasn't been cancelled, call the listener
33 public Alarm() {
41 // Sets the alarm to go off in a certain number of milliseconds. If the alarm is already set,
42 // it's overwritten and only the new alarm setting is used
83 public void onAlarm(Alarm alarm);
  /external/chromium/chrome/browser/
jankometer.cc 70 virtual void Alarm() {
74 Watchdog::Alarm();
  /packages/apps/DeskClock/src/com/android/deskclock/
Alarm.java 30 public final class Alarm implements Parcelable {
35 public static final Parcelable.Creator<Alarm> CREATOR
36 = new Parcelable.Creator<Alarm>() {
37 public Alarm createFromParcel(Parcel p) {
38 return new Alarm(p);
41 public Alarm[] newArray(int size) {
42 return new Alarm[size];
74 Uri.parse("content://com.android.deskclock/alarm");
95 * Alarm time in UTC milliseconds from the epoch.
101 * True if alarm is activ
    [all...]
  /frameworks/base/services/java/com/android/server/
AlarmManagerService.java 58 // The threshold for how long an alarm can be late before we print a
84 private final ArrayList<Alarm> mRtcWakeupAlarms = new ArrayList<Alarm>();
85 private final ArrayList<Alarm> mRtcAlarms = new ArrayList<Alarm>();
86 private final ArrayList<Alarm> mElapsedRealtimeWakeupAlarms = new ArrayList<Alarm>();
87 private final ArrayList<Alarm> mElapsedRealtimeAlarms = new ArrayList<Alarm>();
139 // now that we have initied the driver schedule the alarm
171 Alarm alarm = new Alarm(); local
300 Alarm alarm = it.next(); local
324 Alarm alarm = it.next(); local
514 Alarm alarm = it.next(); local
556 Alarm alarm = it.next(); local
665 Alarm alarm = it.next(); local
746 Alarm alarm = it.next(); local
    [all...]

Completed in 285 milliseconds