Home
last modified time | relevance | path

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

/components/drivers/ipc/
A Ddataqueue.c46 void (*evt_notify)(struct rt_data_queue *queue, rt_uint32_t event)) in rt_data_queue_init()
51 queue->evt_notify = evt_notify; in rt_data_queue_init()
182 if ((result == RT_EOK) && queue->evt_notify != RT_NULL) in rt_data_queue_push()
184 queue->evt_notify(queue, RT_DATAQUEUE_EVENT_PUSH); in rt_data_queue_push()
301 if (queue->evt_notify != RT_NULL) in rt_data_queue_pop()
302 queue->evt_notify(queue, RT_DATAQUEUE_EVENT_LWM); in rt_data_queue_pop()
309 if ((result == RT_EOK) && (queue->evt_notify != RT_NULL)) in rt_data_queue_pop()
311 queue->evt_notify(queue, RT_DATAQUEUE_EVENT_POP); in rt_data_queue_pop()
/components/drivers/include/ipc/
A Ddataqueue.h42 void (*evt_notify)(struct rt_data_queue *queue, rt_uint32_t event); member
51 void (*evt_notify)(struct rt_data_queue *queue, rt_uint32_t event));

Completed in 3 milliseconds