OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mTimerId
(Results
1 - 7
of
7
) 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/
TimerObj.java
43
public int
mTimerId
; // Unique id
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
must avoid StopwatchService.NOTIFICATION_ID
[
all
...]
TimerReceiver.java
209
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
...]
Timers.java
53
if (t.
mTimerId
== timerId) {
TimerFragment.java
150
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
);
[
all
...]
/packages/apps/DeskClock/src/com/android/deskclock/
HandleApiCalls.java
201
.putExtra(Timers.TIMER_INTENT_EXTRA, timer.
mTimerId
));
Completed in 418 milliseconds