Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/driver/
Dtwai.c78 QueueHandle_t rx_queue; member
131 if (xQueueSendFromISR(p_twai_obj->rx_queue, &frame, task_woken) == pdTRUE) { in twai_handle_rx_buffer_frames()
151 if (xQueueSendFromISR(p_twai_obj->rx_queue, &frame, task_woken) == pdTRUE) { in twai_handle_rx_buffer_frames()
320 if (p_obj->rx_queue != NULL) { in twai_free_driver_obj()
321 vQueueDelete(p_obj->rx_queue); in twai_free_driver_obj()
367 …p_obj->rx_queue = xQueueCreateStatic(rx_queue_len, sizeof(twai_hal_frame_t), p_obj->rx_queue_buff,… in twai_alloc_driver_obj()
369 if (p_obj->rx_queue == NULL || p_obj->alert_semphr == NULL) { in twai_alloc_driver_obj()
376 p_obj->rx_queue = xQueueCreate(rx_queue_len, sizeof(twai_hal_frame_t)); in twai_alloc_driver_obj()
378 …if ((tx_queue_len > 0 && p_obj->tx_queue == NULL) || p_obj->rx_queue == NULL || p_obj->alert_semph… in twai_alloc_driver_obj()
493 xQueueReset(p_twai_obj->rx_queue); in twai_start()
[all …]
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/gap/
Dgap_conn.c310 if (fixed_queue_is_empty(p_ccb->rx_queue)) { in GAP_ConnReadData()
317 BT_HDR *p_buf = fixed_queue_try_peek_first(p_ccb->rx_queue); in GAP_ConnReadData()
335 osi_free(fixed_queue_dequeue(p_ccb->rx_queue, 0)); in GAP_ConnReadData()
407 p_buf = (BT_HDR *)fixed_queue_dequeue(p_ccb->rx_queue, 0); in GAP_ConnBTRead()
992 fixed_queue_enqueue(p_ccb->rx_queue, p_msg, FIXED_QUEUE_MAX_TIMEOUT); in gap_data_ind()
1124 p_ccb->rx_queue = fixed_queue_new(QUEUE_SIZE_MAX); in gap_allocate_ccb()
1156 while (!fixed_queue_is_empty(p_ccb->rx_queue)) { in gap_release_ccb()
1157 osi_free(fixed_queue_dequeue(p_ccb->rx_queue, 0)); in gap_release_ccb()
1159 fixed_queue_free(p_ccb->rx_queue, NULL); in gap_release_ccb()
1160 p_ccb->rx_queue = NULL; in gap_release_ccb()
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/gap/include/
Dgap_int.h75 fixed_queue_t *rx_queue; /* Queue of buffers waiting to be read */ member