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 32 public final class Alarm implements Parcelable {
37 public static final Parcelable.Creator<Alarm> CREATOR
38 = new Parcelable.Creator<Alarm>() {
39 public Alarm createFromParcel(Parcel p) {
40 return new Alarm(p);
43 public Alarm[] newArray(int size) {
44 return new Alarm[size];
76 Uri.parse("content://com.android.deskclock/alarm");
97 * Alarm time in UTC milliseconds from the epoch.
103 * True if alarm is activ
    [all...]
  /frameworks/base/services/java/com/android/server/
AlarmManagerService.java 59 // The threshold for how long an alarm can be late before we print a
85 private final ArrayList<Alarm> mRtcWakeupAlarms = new ArrayList<Alarm>();
86 private final ArrayList<Alarm> mRtcAlarms = new ArrayList<Alarm>();
87 private final ArrayList<Alarm> mElapsedRealtimeWakeupAlarms = new ArrayList<Alarm>();
88 private final ArrayList<Alarm> mElapsedRealtimeAlarms = new ArrayList<Alarm>();
142 // now that we have initied the driver schedule the alarm
174 Alarm alarm = new Alarm(); local
310 Alarm alarm = it.next(); local
334 Alarm alarm = it.next(); local
357 Alarm alarm = it.next(); local
547 Alarm alarm = it.next(); local
589 Alarm alarm = it.next(); local
698 Alarm alarm = it.next(); local
779 Alarm alarm = it.next(); local
    [all...]

Completed in 195 milliseconds