Home
last modified time | relevance | path

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

/aosp12/packages/apps/Nfc/nci/jni/
H A DIntervalTimer.cpp29 mTimerId = 0; in IntervalTimer()
34 if (mTimerId == 0) { in set()
52 stat = timer_settime(mTimerId, 0, &ts, 0); in set()
60 if (mTimerId == 0) return; in kill()
62 timer_delete(mTimerId); in kill()
63 mTimerId = 0; in kill()
76 se.sigev_value.sival_ptr = &mTimerId; in create()
81 stat = timer_create(CLOCK_MONOTONIC, &se, &mTimerId); in create()
H A DIntervalTimer.h34 timer_t mTimerId;
/aosp12/frameworks/av/media/libwatchdog/
H A DWatchdog.cpp36 sev.sigev_value.sival_ptr = &mTimerId; in Watchdog()
37 int err = timer_create(CLOCK_MONOTONIC, &sev, &mTimerId); in Watchdog()
49 err = timer_settime(mTimerId, 0, &spec, nullptr); in Watchdog()
57 int err = timer_delete(mTimerId); in ~Watchdog()
/aosp12/system/chre/platform/linux/
H A Dsystem_timer.cc48 int ret = timer_delete(mTimerId); in ~SystemTimer()
66 int ret = timer_create(CLOCK_MONOTONIC, &sigevt, &mTimerId); in init()
107 int ret = timer_gettime(mTimerId, &spec); in isActive()
126 int ret = timer_settime(mTimerId, kFlags, &spec, nullptr); in setInternal()
/aosp12/packages/apps/DeskClock/src/com/android/deskclock/
H A DLabelDialogFragment.kt49 private var mTimerId = 0 regex
63 mTimerId = args.getInt(ARG_TIMER_ID, -1)
122 } else if (mTimerId >= 0) {
123 val timer: Timer? = DataModel.dataModel.getTimer(mTimerId)
/aosp12/system/chre/platform/linux/include/chre/target_platform/
H A Dsystem_timer_base.h33 timer_t mTimerId;
/aosp12/frameworks/av/media/libwatchdog/include/watchdog/
H A DWatchdog.h44 timer_t mTimerId;