HomeSort by relevance Sort by last modified time
    Searched refs:timerId (Results 1 - 25 of 32) sorted by null

1 2

  /device/google/contexthub/firmware/inc/
timer.h 31 uint32_t timerId;
36 typedef void (*TimTimerCbkF)(uint32_t timerId, void* data);
44 bool timTimerCancel(uint32_t timerId);
syscallDo.h 226 static inline bool eOsTimTimerCancel(uint32_t timerId)
228 return syscallDo1P(SYSCALL_NO(SYSCALL_DOMAIN_OS, SYSCALL_OS_MAIN, SYSCALL_OS_MAIN_TIME, SYSCALL_OS_MAIN_TIME_CANCEL_TIMER), timerId);
  /device/google/contexthub/firmware/app/test0.app/
test_app0.c 51 uint32_t timerId;
55 timerId = eOsTimTimerSet(1000000000ULL, 50, 50, mMyTid, (void *)&cnt, false);
56 eOsLog(LOG_INFO, "App 0 started with tid %u timerid %u\n", mMyTid, timerId);
59 eOsLog(LOG_INFO, "App 0 received timer %u callback: %d\n", te->timerId, *(int *)te->data);
68 eOsTimTimerCancel(te->timerId);
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerReceiver.java 38 final int timerId = intent.getIntExtra("timer.intent.extra", -1);
39 final Timer timer = DataModel.getDataModel().getTimer(timerId);
TimerService.java 53 final int timerId = timer == null ? -1 : timer.getId();
56 .putExtra(HandleDeskClockApiCalls.EXTRA_TIMER_ID, timerId);
69 public static Intent createAddMinuteTimerIntent(Context context, int timerId) {
72 .putExtra(HandleDeskClockApiCalls.EXTRA_TIMER_ID, timerId);
104 final int timerId = intent.getIntExtra(HandleDeskClockApiCalls.EXTRA_TIMER_ID, -1);
105 final Timer timer = DataModel.getDataModel().getTimer(timerId);
  /device/google/contexthub/inc/
chre_re.h 264 * @param timerId A timer ID obtained by this nanoapp via chreTimerSet().
269 bool chreTimerCancel(uint32_t timerId);
  /packages/apps/DeskClock/src/com/android/deskclock/
HandleDeskClockApiCalls.java 183 int timerId = intent.getIntExtra(EXTRA_TIMER_ID, -1);
190 if (timerId == -1) {
204 timer = DataModel.getDataModel().getTimer(timerId);
213 timerId = timer.getId();
220 timerId = -1;
252 if (timerId != -1) {
253 showTimers.putExtra(EXTRA_TIMER_ID, timerId);
  /external/libnfc-nci/halimpl/pn54x/hal/
phNxpNciHal_Kovio.c 69 static void kovio_timer_handler(uint32_t timerId, void *pContext)
71 UNUSED(timerId);
phNxpNciHal_NfcDepSWPrio.c 66 static void cleanup_timer_handler(uint32_t timerId, void *pContext)
88 static void custom_poll_timer_handler(uint32_t timerId, void *pContext)
phNxpNciHal_ext.c 62 static void hal_extns_write_rsp_timeout_cb(uint32_t TimerId, void *pContext);
993 static void hal_extns_write_rsp_timeout_cb(uint32_t timerId, void *pContext)
995 UNUSED(timerId);
  /device/google/contexthub/firmware/src/
timer.c 82 evt->timerId = tim->id;
191 bool timTimerCancel(uint32_t timerId)
194 struct Timer *t = timFindTimerById(timerId);
osApi.c 208 uint32_t timerId = va_arg(args, uint32_t);
210 *retValP = timTimerCancel(timerId);
spi.c 87 static void spiDelayCallback(uint32_t timerId, void *data)
hostIntf.c 570 static void initCompleteCallback(uint32_t timerId, void *data)
603 static void latencyTimerCallback(uint32_t timerId, void* data)
    [all...]
  /frameworks/base/core/java/android/os/health/
HealthStatsWriter.java 92 public void addTimer(int timerId, int count, long time) {
93 final int index = mConstants.getIndex(HealthKeys.TYPE_TIMER, timerId);
  /packages/apps/DeskClock/src/com/android/deskclock/data/
DataModel.java 278 * @param timerId identifies the timer to return
279 * @return the timer with the given {@code timerId}
281 public Timer getTimer(int timerId) {
283 return mTimerModel.getTimer(timerId);
TimerDAO.java 83 for (String timerId : timerIds) {
84 final int id = Integer.parseInt(timerId);
TimerModel.java 167 * @param timerId identifies the timer to return
168 * @return the timer with the given {@code timerId}
170 Timer getTimer(int timerId) {
172 if (timer.getId() == timerId) {
757 final int timerId;
762 timerId = -1;
768 timerId = timer.getId();
813 final Intent addMinute = TimerService.createAddMinuteTimerIntent(mContext, timerId);
    [all...]
  /device/google/contexthub/firmware/src/drivers/bosch_bmp280/
bosch_bmp280.c 153 static void baroTimerCallback(uint32_t timerId, void *cookie)
158 static void tempTimerCallback(uint32_t timerId, void *cookie)
  /device/google/contexthub/firmware/src/drivers/hall/
hall.c 64 static void debounceTimerCallback(uint32_t timerId, void *cookie)
  /device/google/contexthub/firmware/src/drivers/hall_twopole/
hall_twopole.c 84 static void debounceTimerCallback(uint32_t timerId, void *cookie)
  /device/google/contexthub/firmware/src/drivers/ams_tmd2772/
ams_tmd2772.c 206 static void alsTimerCallback(uint32_t timerId, void *cookie)
211 static void proxTimerCallback(uint32_t timerId, void *cookie)
  /device/google/contexthub/firmware/src/drivers/rohm_rpr0521/
rohm_rpr0521.c 280 static void alsTimerCallback(uint32_t timerId, void *cookie)
  /external/libnfc-nci/halimpl/pn54x/self-test/
phNxpNciHal_SelfTest.c 660 static void hal_write_rsp_timeout_cb(uint32_t TimerId, void *pContext);
1002 static void hal_write_rsp_timeout_cb(uint32_t timerId, void *pContext)
1004 UNUSED(timerId);
    [all...]
  /device/google/contexthub/firmware/src/drivers/ams_tmd4903/
ams_tmd4903.c 302 static void alsTimerCallback(uint32_t timerId, void *cookie)

Completed in 2537 milliseconds

1 2