Home
last modified time | relevance | path

Searched refs:timer_id (Results 1 – 18 of 18) sorted by relevance

/third_party/ltp/testcases/kernel/syscalls/timer_create/
Dtimer_create02.c44 static kernel_timer_t timer_id; variable
53 {CLOCK_REALTIME, NULL, &timer_id, EFAULT, "invalid sigevent struct"},
55 {MAX_CLOCKS, &sig_ev, &timer_id, EINVAL, "invalid clock"},
56 {CLOCK_REALTIME, &sig_ev_inv_not, &timer_id, EINVAL, "wrong sigev_notify"},
57 {CLOCK_REALTIME, &sig_ev_inv_sig, &timer_id, EINVAL, "wrong sigev_signo"},
/third_party/FreeBSD/sys/kern/
Dkern_timeout.c60 c->timer_id = OS_SWTMR_MAX_TIMERID; in callout_init_mtx()
87 (unsigned short *)&c->timer_id, in callout_reset()
92 ret = LOS_SwtmrStart(c->timer_id); in callout_reset()
107 (void)LOS_SwtmrDelete(c->timer_id); in callout_stop()
/third_party/ltp/testcases/kernel/syscalls/timer_delete/
Dtimer_delete01.c28 kernel_timer_t timer_id; in run() local
41 TEST(tst_syscall(__NR_timer_create, clock, NULL, &timer_id)); in run()
55 TEST(tst_syscall(__NR_timer_delete, timer_id)); in run()
/third_party/musl/src/time/
Dtimer_delete.c9 a_store(&td->timer_id, td->timer_id | INT_MIN); in timer_delete()
Dtimer_create.c66 if (self->timer_id < 0) break; in start()
68 __syscall(SYS_timer_delete, self->timer_id & INT_MAX); in start()
122 td->timer_id = timerid; in timer_create()
Dtimer_getoverrun.c9 t = (void *)(uintptr_t)(td->timer_id & INT_MAX); in timer_getoverrun()
Dtimer_gettime.c9 t = (void *)(uintptr_t)(td->timer_id & INT_MAX); in timer_gettime()
Dtimer_settime.c11 t = (void *)(uintptr_t)(td->timer_id & INT_MAX); in timer_settime()
/third_party/cmsis/CMSIS/RTOS2/Include/
Dcmsis_os2.h502 const char *osTimerGetName (osTimerId_t timer_id);
508 osStatus_t osTimerStart (osTimerId_t timer_id, uint32_t ticks);
513 osStatus_t osTimerStop (osTimerId_t timer_id);
518 uint32_t osTimerIsRunning (osTimerId_t timer_id);
523 osStatus_t osTimerDelete (osTimerId_t timer_id);
/third_party/ltp/testcases/kernel/syscalls/timer_settime/
Dtimer_settime02.c48 kernel_timer_t *timer_id; member
123 TEST(tv->timer_settime(*tc->timer_id, 0, new, old)); in run()
/third_party/FreeBSD/sys/sys/
D_callout.h55 unsigned int timer_id; member
/third_party/gstreamer/gstplugins_bad/gst/inter/
Dgstintertest.c48 guint timer_id; member
262 intertest->timer_id = g_timeout_add (1000, onesecond_timer, intertest); in gst_inter_test_start()
270 g_source_remove (intertest->timer_id); in gst_inter_test_stop()
/third_party/gstreamer/gstplugins_bad/tools/
Dgst-app-maker116 guint timer_id;
288 replace->timer_id = g_timeout_add (1000, onesecond_timer, replace);
296 g_source_remove (replace->timer_id);
/third_party/musl/porting/liteos_a/user/src/internal/
Dpthread_impl.h46 volatile int timer_id; member
/third_party/musl/src/internal/
Dpthread_impl.h46 volatile int timer_id; member
/third_party/musl/porting/liteos_m/user/src/internal/
Dpthread_impl.h47 volatile int timer_id; member
/third_party/musl/porting/linux/user/src/internal/
Dpthread_impl.h61 volatile int timer_id; member
/third_party/glib/gio/
Dgdbus-tool.c2235 guint watch_id, timer_id = 0, activate_watch_id; in handle_wait() local
2373 timer_id = g_timeout_add_seconds (opt_wait_timeout_secs, wait_timeout_cb, &wait_state); in handle_wait()
2379 if (timer_id != 0) in handle_wait()
2380 g_source_remove (timer_id); in handle_wait()