HomeSort by relevance Sort by last modified time
    Searched refs:Alarm (Results 1 - 23 of 23) 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...]
Alarms.java 41 * The Alarms provider supplies info about Alarm Clock settings
48 // is a public action used in the manifest for receiving Alarm broadcasts
49 // from the alarm manager.
52 // A public action sent by AlarmKlaxon when the alarm has stopped sounding
58 // can snooze the alarm (after ALARM_ALERT_ACTION and before ALARM_DONE_ACTION).
62 // can dismiss the alarm (after ALARM_ALERT_ACTION and before ALARM_DONE_ACTION).
65 // A public action sent by AlarmAlertFullScreen when a snoozed alarm was dismissed due
69 // A broadcast sent every time the next alarm time is set in the system
73 // show the alarm has been killed.
77 // alarm played before being killed
222 Alarm alarm = null; local
349 Alarm alarm = null; local
387 Alarm alarm = new Alarm(cur); local
408 final Alarm alarm = calculateNextAlert(context); 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() {
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...]
AlarmDatabaseHelper.java 79 Object value = values.get(Alarm.Columns._ID);
84 .query("alarms", new String[]{Alarm.Columns._ID}, "_id = ?",
88 values.putNull(Alarm.Columns._ID);
93 rowId = db.insert("alarms", Alarm.Columns.MESSAGE, values);
101 if (Log.LOGV) Log.v("Added alarm rowId = " + rowId);
103 return ContentUris.withAppendedId(Alarm.Columns.CONTENT_URI, rowId);
AlarmTimePickerDialogFragment.java 28 * Dialog to set alarm time.
32 private static final String KEY_ALARM = "alarm";
37 public static AlarmTimePickerDialogFragment newInstance(Alarm alarm) {
40 args.putParcelable(KEY_ALARM, alarm);
59 final Alarm alarm = getArguments().getParcelable(KEY_ALARM); local
79 act.onDialogTimeSet(alarm, mPicker.getHours(), mPicker.getMinutes());
92 void onDialogTimeSet(Alarm alarm, int hourOfDay, int minute)
    [all...]
AlarmUtils.java 30 public static void showTimeEditDialog(FragmentManager manager, final Alarm alarm) {
39 alarm);
51 * Display a toast that tells the user how long until the alarm
55 Alarm.DaysOfWeek daysOfWeek) {
LabelDialogFragment.java 43 private static final String KEY_ALARM = "alarm";
49 public static LabelDialogFragment newInstance(Alarm alarm, String label) {
53 args.putParcelable(KEY_ALARM, alarm);
79 final Alarm alarm = bundle.getParcelable(KEY_ALARM); local
91 set(alarm, timer, tag);
110 set(alarm, timer, tag);
120 private void set(Alarm alarm, TimerObj timer, String tag)
    [all...]
AlarmKlaxon.java 43 // Default of 10 minutes until alarm is silenced.
51 private Alarm mCurrentAlarm;
64 Log.v("*********** Alarm killer triggered ***********");
66 sendKillBroadcast((Alarm) msg.obj, false);
76 // The user might already be in a call when the alarm fires. When
78 // which kills the alarm. Check against the initial call state so
79 // we don't kill the alarm during a call.
91 // Listen for incoming calls to kill the alarm.
123 final Alarm alarm = intent.getParcelableExtra local
    [all...]
AlarmClock.java 91 private Alarm mSelectedAlarm;
100 private Alarm mDeletedAlarm;
147 mAdapter.removeSelectedId(itemHolder.alarm.id);
149 asyncDeleteAlarm(itemHolder.alarm);
280 public void onDialogTimeSet(Alarm alarm, int hourOfDay, int minute) {
281 alarm.hour = hourOfDay;
282 alarm.minutes = minute;
283 alarm.enabled = true;
284 mScrollToAlarmId = alarm.id
323 final Alarm alarm = (Alarm) intent.getParcelableExtra(Alarms.ALARM_INTENT_EXTRA); local
487 Alarm alarm; field in class:AlarmClock.AlarmItemAdapter.ItemHolder
621 final Alarm alarm = new Alarm(cursor); local
    [all...]
SetAlarm.java 41 * Manages each alarm
60 private Alarm mOriginalAlarm;
82 mAlarmPref = (AlarmPreference) findPreference("alarm");
94 Alarm alarm = i.getParcelableExtra(Alarms.ALARM_INTENT_EXTRA); local
96 if (alarm == null) {
97 // No alarm means create a new alarm.
98 alarm = new Alarm();
294 Alarm alarm = new Alarm(); local
    [all...]
AlarmReceiver.java 32 * activity. Passes through Alarm ID.
36 /** If the alarm is older than STALE_WINDOW, ignore. It
56 // The alarm has been killed, update the notification
57 updateNotification(context, (Alarm)
62 Alarm alarm = null; local
64 // Get the alarm out of the Intent
65 alarm = intent.getParcelableExtra(Alarms.ALARM_INTENT_EXTRA);
68 if (alarm != null) {
69 Alarms.disableSnoozeAlert(context, alarm.id)
85 Alarm alarm = null; local
    [all...]
AlarmAlertFullScreen.java 46 * Alarm Clock alarm alert: pops visible indicator and plays alarm
57 protected Alarm mAlarm;
84 Alarm alarm = intent.getParcelableExtra(Alarms.ALARM_INTENT_EXTRA);
86 if (alarm != null && mAlarm.id == alarm.id) {
113 Log.v("AlarmAlertFullScreen - Alarm Id " + mAlarm.toString());
145 // Register to get the alarm killed/snooze/dismiss intent
    [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 92 private Alarm mReorderAlarm = new Alarm();
93 private Alarm mOnExitAlarm = new Alarm();
562 public void onAlarm(Alarm alarm) {
667 public void onAlarm(Alarm alarm) {
    [all...]
Workspace.java 197 private final Alarm mFolderCreationAlarm = new Alarm();
198 private final Alarm mReorderAlarm = new Alarm();
    [all...]
  /frameworks/base/services/java/com/android/server/
AlarmManagerService.java 63 // The threshold for how long an alarm can be late before we print a
91 private final ArrayList<Alarm> mRtcWakeupAlarms = new ArrayList<Alarm>();
92 private final ArrayList<Alarm> mRtcAlarms = new ArrayList<Alarm>();
93 private final ArrayList<Alarm> mElapsedRealtimeWakeupAlarms = new ArrayList<Alarm>();
94 private final ArrayList<Alarm> mElapsedRealtimeAlarms = new ArrayList<Alarm>();
189 // now that we have initied the driver schedule the alarm
221 Alarm alarm = new Alarm(); local
357 Alarm alarm = it.next(); local
381 Alarm alarm = it.next(); local
404 Alarm alarm = it.next(); local
674 Alarm alarm = it.next(); local
716 Alarm alarm = it.next(); local
825 Alarm alarm = it.next(); local
919 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 580 milliseconds