Home
last modified time | relevance | path

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

/ThreadX-v6.3.0/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c2253 txfr_timer_t *p_timer; in txfr_timer_callback_wrapper() local
2255 p_timer = (txfr_timer_t *)id; in txfr_timer_callback_wrapper()
2257 if(p_timer == NULL) { in txfr_timer_callback_wrapper()
2261 p_timer->callback(p_timer); in txfr_timer_callback_wrapper()
2271 txfr_timer_t *p_timer; in xTimerCreate() local
2284 p_timer = txfr_malloc(sizeof(txfr_timer_t)); in xTimerCreate()
2285 if(p_timer == NULL) { in xTimerCreate()
2289 TX_MEMSET(p_timer, 0, sizeof(*p_timer)); in xTimerCreate()
2290 p_timer->allocated = 1u; in xTimerCreate()
2291 p_timer->period = xTimerPeriod; in xTimerCreate()
[all …]