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

  /external/valgrind/main/gdbserver_tests/
nlpasssigalrm.stdoutB.exp 2 SIGALRM Yes Yes Yes Alarm clock
4 Program received signal SIGALRM, Alarm clock.
7 SIGALRM No No Yes Alarm clock
  /packages/apps/DeskClock/src/com/android/deskclock/
HandleSetAlarm.java 64 new Alarm.DaysOfWeek(0)).getTimeInMillis();
67 Alarm.Columns.CONTENT_URI,
68 Alarm.Columns.ALARM_QUERY_COLUMNS,
69 Alarm.Columns.HOUR + "=" + hour + " AND " +
70 Alarm.Columns.MINUTES + "=" + minutes + " AND " +
71 Alarm.Columns.DAYS_OF_WEEK + "=0 AND " +
72 Alarm.Columns.MESSAGE + "=?",
85 values.put(Alarm.Columns.HOUR, hour);
86 values.put(Alarm.Columns.MINUTES, minutes);
87 values.put(Alarm.Columns.MESSAGE, message)
111 Alarm alarm = new Alarm(c); local
    [all...]
RepeatPreference.java 31 private Alarm.DaysOfWeek mDaysOfWeek = new Alarm.DaysOfWeek(0);
34 private Alarm.DaysOfWeek mNewDaysOfWeek = new Alarm.DaysOfWeek(0);
79 public void setDaysOfWeek(Alarm.DaysOfWeek dow) {
85 public Alarm.DaysOfWeek getDaysOfWeek() {
Alarms.java 39 * The Alarms provider supplies info about Alarm Clock settings
44 // is a public action used in the manifest for receiving Alarm broadcasts
45 // from the alarm manager.
48 // A public action sent by AlarmKlaxon when the alarm has stopped sounding
54 // can snooze the alarm (after ALARM_ALERT_ACTION and before ALARM_DONE_ACTION).
58 // can dismiss the alarm (after ALARM_ALERT_ACTION and before ALARM_DONE_ACTION).
62 // show the alarm has been killed.
66 // alarm played before being killed.
69 // This string is used to indicate a silent alarm in the db.
76 // This string is used when passing an Alarm object through an intent
197 Alarm alarm = null; local
320 Alarm alarm = null; local
358 Alarm alarm = new Alarm(cur); local
379 final Alarm alarm = calculateNextAlert(context); local
    [all...]
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...]
AlarmDatabaseHelper.java 74 long rowId = db.insert("alarms", Alarm.Columns.MESSAGE, values);
78 if (Log.LOGV) Log.v("Added alarm rowId = " + rowId);
80 return ContentUris.withAppendedId(Alarm.Columns.CONTENT_URI, rowId);
AlarmClock.java 63 Alarm alarm) {
64 Alarms.enableAlarm(this, alarm.id, enabled);
66 SetAlarm.popAlarmSetToast(this, alarm.hour, alarm.minutes,
67 alarm.daysOfWeek);
88 final Alarm alarm = new Alarm(cursor); local
95 clockOnOff.setChecked(alarm.enabled)
168 final Alarm alarm = new Alarm(c); local
180 final Alarm alarm = new Alarm(c); local
276 final Alarm alarm = new Alarm(c); local
331 final Alarm alarm = new Alarm(c); local
    [all...]
AlarmKlaxon.java 43 // Default of 10 minutes until alarm is silenced.
51 private Alarm mCurrentAlarm;
63 Log.v("*********** Alarm killer triggered ***********");
65 sendKillBroadcast((Alarm) msg.obj);
75 // The user might already be in a call when the alarm fires. When
77 // which kills the alarm. Check against the initial call state so
78 // we don't kill the alarm during a call.
90 // Listen for incoming calls to kill the alarm.
119 final Alarm alarm = intent.getParcelableExtra local
    [all...]
SetAlarm.java 46 * Manages each alarm
66 private Alarm mOriginalAlarm;
88 mAlarmPref = (AlarmPreference) findPreference("alarm");
100 Alarm alarm = i.getParcelableExtra(Alarms.ALARM_INTENT_EXTRA); local
102 if (alarm == null) {
103 // No alarm means create a new alarm.
104 alarm = new Alarm();
327 Alarm alarm = new Alarm(); local
    [all...]
AlarmReceiver.java 33 * activity. Passes through Alarm ID.
37 /** If the alarm is older than STALE_WINDOW, ignore. It
57 // The alarm has been killed, update the notification
58 updateNotification(context, (Alarm)
63 Alarm alarm = null; local
65 // Get the alarm out of the Intent
66 alarm = intent.getParcelableExtra(Alarms.ALARM_INTENT_EXTRA);
69 if (alarm != null) {
70 Alarms.disableSnoozeAlert(context, alarm.id)
84 Alarm alarm = null; local
    [all...]
AlarmAlertFullScreen.java 41 * Alarm Clock alarm alert: pops visible indicator and plays alarm
52 protected Alarm mAlarm;
67 Alarm alarm = intent.getParcelableExtra(Alarms.ALARM_INTENT_EXTRA);
68 if (alarm != null && mAlarm.id == alarm.id) {
101 // Register to get the alarm killed/snooze/dismiss intent.
126 /* snooze behavior: pop a snooze confirmation view, kick alarm
    [all...]
  /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);
SpringLoadedDragController.java 25 Alarm mAlarm;
33 mAlarm = new Alarm();
41 // Set a new alarm to expire for the screen that we are hovering over now
50 public void onAlarm(Alarm alarm) {
Folder.java 94 private Alarm mReorderAlarm = new Alarm();
95 private Alarm mOnExitAlarm = new Alarm();
574 public void onAlarm(Alarm alarm) {
671 public void onAlarm(Alarm alarm) {
    [all...]
Workspace.java 204 private final Alarm mFolderCreationAlarm = new Alarm();
205 private final Alarm mReorderAlarm = new Alarm();
    [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...]
  /external/chromium/base/threading/
watchdog.h 5 // The Watchdog class creates a second thread that can Alarm if a specific
40 // Start timing, and alarm when time expires (unless we're disarm()ed.)
45 // Reset time, and do not set off the alarm.
48 // Alarm is called if the time expires after an Arm() without someone calling
50 virtual void Alarm();
75 const TimeDelta duration_; // How long after start_time_ do we alarm?
80 TimeTicks start_time_; // Start of epoch, and alarm after duration_.
82 // When the debugger breaks (when we alarm), all the other alarms that are
83 // armed will expire (also alarm). To diminish this effect, we track any
86 // Without this safety net, any alarm will typically trigger a host of follo
    [all...]
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.
  /external/chromium/chrome/browser/
jankometer.cc 70 virtual void Alarm() {
74 Watchdog::Alarm();

Completed in 513 milliseconds