/aosp12/system/chre/apps/test/chqts/src/general_test/ |
H A D | timer_cancel_test.cc | 48 stage->timerId = chreTimerSet(kDuration, stage, stage->oneShot); in startStages() 49 if (stage->timerId == CHRE_TIMER_INVALID) { in startStages() 57 if (!chreTimerCancel(stage->timerId)) { in startStages() 60 if (chreTimerCancel(stage->timerId)) { in startStages() 112 bool cancelSucceeded = chreTimerCancel(stage->timerId); in handleStageEvent() 124 if (chreTimerCancel(stage->timerId)) { in handleStageEvent()
|
H A D | timer_cancel_test.h | 42 uint32_t timerId; member 49 timerId(CHRE_TIMER_INVALID), in Stage()
|
/aosp12/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
H A D | TimerService.kt | 72 val timerId = intent.getIntExtra(EXTRA_TIMER_ID, -1) regex 74 val timer: Timer = DataModel.dataModel.getTimer(timerId) ?: return START_NOT_STICKY 86 .putExtra(EXTRA_TIMER_ID, timerId) 144 val timerId = timer?.id ?: -1 regex 147 .putExtra(EXTRA_TIMER_ID, timerId) 165 fun createAddMinuteTimerIntent(context: Context, timerId: Int): Intent { 168 .putExtra(EXTRA_TIMER_ID, timerId)
|
H A D | ExpiredTimersActivity.kt | 155 val timerId: Int = timer.id 159 timerItem.id = timerId 170 val timer: Timer = DataModel.dataModel.getTimer(timerId)!! 189 val timerId: Int = timer.id 193 if (timerView.id == timerId) {
|
H A D | TimerReceiver.kt | 37 val timerId = intent.getIntExtra("timer.intent.extra", -1) regex 38 val timer: Timer? = DataModel.dataModel.getTimer(timerId)
|
H A D | TimerItemFragment.kt | 34 var timerId = 0 regex 40 timerId = requireArguments().getInt(KEY_TIMER_ID) 74 get() = DataModel.dataModel.getTimer(timerId)
|
H A D | TimerPagerAdapter.kt | 100 mFragments.remove(fragment.timerId)
|
/aosp12/packages/apps/Dialer/java/com/android/dialer/metrics/ |
H A D | StubMetrics.java | 68 public void stopUnnamedTimer(int timerId, String timerEventName) { in stopUnnamedTimer() argument 71 unnamedEvents.remove(timerId), in stopUnnamedTimer() 73 timerId, in stopUnnamedTimer()
|
H A D | FutureTimer.java | 104 Integer timerId = metrics.startUnnamedTimer(); in applyTiming() local 111 if (timerId != null) { in applyTiming() 112 metrics.stopUnnamedTimer(timerId, eventName); in applyTiming()
|
H A D | Metrics.java | 90 void stopUnnamedTimer(int timerId, String timerEventName); in stopUnnamedTimer() argument
|
/aosp12/system/chre/platform/shared/ |
H A D | chre_api_re.cc | 56 DLL_EXPORT bool chreTimerCancel(uint32_t timerId) { in chreTimerCancel() argument 61 .cancelNanoappTimer(nanoapp, timerId); in chreTimerCancel()
|
/aosp12/system/chre/apps/power_test/common/ |
H A D | request_manager.cc | 133 uint32_t timerId = in requestTimer() local 135 if (timerId != CHRE_TIMER_INVALID) { in requestTimer() 137 mTimerIds[type] = timerId; in requestTimer()
|
/aosp12/packages/apps/DeskClock/src/com/android/deskclock/data/ |
H A D | TimerDAO.kt | 66 for (timerId in timerIds) { 67 val id = timerId.toInt()
|
H A D | TimerModel.kt | 154 fun getTimer(timerId: Int): Timer? { 156 if (timer.id == timerId) {
|
/aosp12/system/chre/chre_api/legacy/v1_0/chre/ |
H A D | re.h | 268 bool chreTimerCancel(uint32_t timerId);
|
/aosp12/system/chre/chre_api/legacy/v1_1/chre/ |
H A D | re.h | 328 bool chreTimerCancel(uint32_t timerId);
|
/aosp12/system/chre/chre_api/legacy/v1_2/chre/ |
H A D | re.h | 334 bool chreTimerCancel(uint32_t timerId);
|
/aosp12/system/chre/chre_api/legacy/v1_3/chre/ |
H A D | re.h | 334 bool chreTimerCancel(uint32_t timerId);
|
/aosp12/system/chre/chre_api/include/chre_api/chre/ |
H A D | re.h | 348 bool chreTimerCancel(uint32_t timerId);
|
/aosp12/system/chre/chre_api/legacy/v1_4/chre/ |
H A D | re.h | 348 bool chreTimerCancel(uint32_t timerId);
|
/aosp12/frameworks/base/core/java/android/os/health/ |
H A D | HealthStatsWriter.java | 94 public void addTimer(int timerId, int count, long time) { in addTimer() argument 95 final int index = mConstants.getIndex(HealthKeys.TYPE_TIMER, timerId); in addTimer()
|
/aosp12/hardware/nxp/nfc/pn8x/halimpl/hal/ |
H A D | phNxpNciHal_NfcDepSWPrio.cc | 69 static void cleanup_timer_handler(uint32_t timerId, void* pContext) { in cleanup_timer_handler() argument 91 static void custom_poll_timer_handler(uint32_t timerId, void* pContext) { in custom_poll_timer_handler() argument
|
H A D | phNxpNciHal_ext.cc | 976 static void hal_extns_write_rsp_timeout_cb(uint32_t timerId, void* pContext) { in hal_extns_write_rsp_timeout_cb() argument 977 UNUSED(timerId); in hal_extns_write_rsp_timeout_cb()
|
/aosp12/hardware/nxp/nfc/snxxx/halimpl/hal/ |
H A D | phNxpNciHal_NfcDepSWPrio.cc | 69 static void cleanup_timer_handler(uint32_t timerId, void* pContext) { in cleanup_timer_handler() argument 91 static void custom_poll_timer_handler(uint32_t timerId, void* pContext) { in custom_poll_timer_handler() argument
|
/aosp12/system/chre/build/app_support/qcom_nanohub/ |
H A D | app_support.cc | 84 uint32_t timerId; member
|