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

  /packages/apps/Nfc/nci/jni/
IntervalTimer.cpp 27 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);
IntervalTimer.h 36 timer_t mTimerId;
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerFragmentAdapter.java 74 return (o2.mTimerId < o1.mTimerId) ? -1 : 1;
84 if (timer.mTimerId == id) {
TimerObj.java 45 public int mTimerId; // Unique id
87 final String id = Integer.toString(mTimerId);
88 editor.putInt(PREF_TIMER_ID + id, mTimerId);
103 String id = Integer.toString(mTimerId);
122 String key = PREF_TIMER_ID + Integer.toString(mTimerId);
123 String id = Integer.toString(mTimerId);
156 dest.writeInt(mTimerId);
166 mTimerId = p.readInt();
193 /* TODO: mTimerId must avoid StopwatchService.NOTIFICATION_ID,
196 mTimerId = timerId
    [all...]
TimerReceiver.java 215 int timerId = (t == null) ? -1 : t.mTimerId;
425 PendingIntent contentIntent = PendingIntent.getActivity(context, timerObj.mTimerId,
427 Timers.TIMER_INTENT_EXTRA, timerObj.mTimerId),
431 PendingIntent addOneMinuteAction = PendingIntent.getBroadcast(context, timerObj.mTimerId,
433 .putExtra(Timers.TIMER_INTENT_EXTRA, timerObj.mTimerId),
437 PendingIntent stopIntent = PendingIntent.getBroadcast(context, timerObj.mTimerId,
439 .putExtra(Timers.TIMER_INTENT_EXTRA, timerObj.mTimerId),
472 timerObj.mTimerId, notification);
475 + timerObj.getLabelOrDefault(context) + " #" + timerObj.mTimerId);
488 notificationManager.cancel(timerObj.mTimerId);
    [all...]
Timers.java 54 if (t.mTimerId == timerId) {
TimerFullScreenFragment.java 158 return mTimers.get(p).mTimerId;
167 if (t.mTimerId == id) {
192 if (t.mTimerId == id) {
200 int position = findTimerPositionById(timerObj.mTimerId);
762 cancelTimerNotification(t.mTimerId);
799 cancelTimerNotification(t.mTimerId);
833 cancelTimerNotification(t.mTimerId);
    [all...]
TimerFragment.java 339 mAdapter.deleteTimer(t.mTimerId);
349 i.putExtra(Timers.TIMER_INTENT_EXTRA, t.mTimerId);
489 cancelTimerNotification(t.mTimerId);
503 cancelTimerNotification(t.mTimerId);
586 mNotificationManager.cancel(timer.mTimerId);
736 cancelTimerNotification(t.mTimerId);
  /frameworks/native/services/surfaceflinger/
EventThread.h 131 timer_t mTimerId;
EventThread.cpp 65 timer_create(CLOCK_MONOTONIC, &se, &mTimerId);
84 timer_settime(mTimerId, 0, &ts, NULL);
  /packages/apps/DeskClock/src/com/android/deskclock/
HandleApiCalls.java 206 .putExtra(Timers.TIMER_INTENT_EXTRA, timer.mTimerId));

Completed in 473 milliseconds