Searched refs:mTimerId (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Nfc/nci/jni/
H A DIntervalTimer.cpp27 mTimerId = 0;
34 if (mTimerId == 0)
57 stat = timer_settime(mTimerId, 0, &ts, 0);
72 if (mTimerId == 0)
75 timer_delete(mTimerId);
76 mTimerId = 0;
91 se.sigev_value.sival_ptr = &mTimerId;
95 stat = timer_create(CLOCK_MONOTONIC, &se, &mTimerId);
H A DIntervalTimer.h36 timer_t mTimerId; member in class:IntervalTimer
/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerObj.java43 public int mTimerId; // Unique id field in class:TimerObj
85 String key = PREF_TIMER_ID + Integer.toString(mTimerId);
86 String id = Integer.toString(mTimerId);
87 editor.putInt (key, mTimerId);
110 String id = Integer.toString(mTimerId);
129 String key = PREF_TIMER_ID + Integer.toString(mTimerId);
130 String id = Integer.toString(mTimerId);
161 dest.writeInt(mTimerId);
171 mTimerId = p.readInt();
194 /* TODO: mTimerId mus
[all...]
H A DTimerReceiver.java209 int timerId = (t == null) ? -1 : t.mTimerId;
414 PendingIntent contentIntent = PendingIntent.getActivity(context, timerObj.mTimerId,
416 Timers.TIMER_INTENT_EXTRA, timerObj.mTimerId),
420 PendingIntent addOneMinuteAction = PendingIntent.getBroadcast(context, timerObj.mTimerId,
422 .putExtra(Timers.TIMER_INTENT_EXTRA, timerObj.mTimerId),
426 PendingIntent stopAction = PendingIntent.getBroadcast(context, timerObj.mTimerId,
428 .putExtra(Timers.TIMER_INTENT_EXTRA, timerObj.mTimerId),
458 timerObj.mTimerId, notification);
461 + timerObj.getLabelOrDefault(context) + " #" + timerObj.mTimerId);
474 notificationManager.cancel(timerObj.mTimerId);
[all...]
H A DTimers.java53 if (t.mTimerId == timerId) {
H A DTimerFragment.java150 return mTimers.get(p).mTimerId;
159 if (t.mTimerId == id) {
184 if (t.mTimerId == id) {
192 int position = findTimerPositionById(timerObj.mTimerId);
496 mAdapter.findTimerPositionById(t.mTimerId), 0);
764 cancelTimerNotification(t.mTimerId);
806 cancelTimerNotification(t.mTimerId);
840 cancelTimerNotification(t.mTimerId);
853 cancelTimerNotification(t.mTimerId);
871 mAdapter.deleteTimer(t.mTimerId);
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/
H A DHandleApiCalls.java201 .putExtra(Timers.TIMER_INTENT_EXTRA, timer.mTimerId));

Completed in 136 milliseconds