Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/stack/avct/
Davct_lcb_act.cc502 if (!p_lcb->cong && !fixed_queue_is_empty(p_lcb->tx_q)) { in avct_lcb_cong_ind()
503 while (!p_lcb->cong && (p_buf = (BT_HDR*)fixed_queue_try_dequeue(p_lcb->tx_q)) != NULL) { in avct_lcb_cong_ind()
610 fixed_queue_enqueue(p_lcb->tx_q, p_buf); in avct_lcb_send_msg()
626 log::verbose("tx_q_count:{}", fixed_queue_length(p_lcb->tx_q)); in avct_lcb_send_msg()
Davct_lcb.cc296 p_lcb->tx_q = fixed_queue_new(SIZE_MAX); in avct_lcb_alloc()
337 fixed_queue_free(p_lcb->tx_q, NULL); in avct_lcb_dealloc()
Davct_api.cc119 fixed_queue_free(avct_cb.lcb[i].tx_q, nullptr); in AVCT_Deregister()
120 avct_cb.lcb[i].tx_q = nullptr; in AVCT_Deregister()
Davct_int.h88 fixed_queue_t* tx_q; /* Transmit data buffer queue */ member
/packages/modules/Nfc/libnfc-nci/src/nfc/nfc/
Dnfc_ncif.cc154 p_cb->conn_id, p_cb->num_buff, p_cb->tx_q.count); in nfc_ncif_send_data()
184 gki_utils->enqueue(&p_cb->tx_q, p_data); in nfc_ncif_send_data()
188 p_data = (NFC_HDR*)GKI_getfirst(&p_cb->tx_q); in nfc_ncif_send_data()
204 p_data = (NFC_HDR*)gki_utils->dequeue(&p_cb->tx_q); in nfc_ncif_send_data()
239 p_data = (NFC_HDR*)GKI_getfirst(&p_cb->tx_q); in nfc_ncif_send_data()
1264 while ((p_data = GKI_dequeue(&p_cb->tx_q)) != nullptr) { in nfc_ncif_proc_deactivate()
Dnfc_utils.cc162 while ((p_buf = gki_utils->dequeue(&p_cb->tx_q)) != nullptr) in nfc_free_conn_cb()
Dnfc_main.cc1270 while ((p_buf = gki_utils->dequeue(&p_cb->tx_q)) != nullptr) in NFC_FlushData()
/packages/modules/Nfc/libnfc-nci/src/nfc/include/
Dnfc_int.h116 BUFFER_Q tx_q; /* transmit queue */ member