Home
last modified time | relevance | path

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

/ThreadX-v6.4.1/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c2263 txfr_timer_t *p_timer; in txfr_timer_callback_wrapper() local
2265 p_timer = (txfr_timer_t *)id; in txfr_timer_callback_wrapper()
2267 if(p_timer == NULL) { in txfr_timer_callback_wrapper()
2271 p_timer->callback(p_timer); in txfr_timer_callback_wrapper()
2281 txfr_timer_t *p_timer; in xTimerCreate() local
2294 p_timer = txfr_malloc(sizeof(txfr_timer_t)); in xTimerCreate()
2295 if(p_timer == NULL) { in xTimerCreate()
2299 TX_MEMSET(p_timer, 0, sizeof(*p_timer)); in xTimerCreate()
2300 p_timer->allocated = 1u; in xTimerCreate()
2301 p_timer->period = xTimerPeriod; in xTimerCreate()
[all …]