Home
last modified time | relevance | path

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

/system/bt/stack/rfcomm/
Dport_api.cc643 *p_rx_queue_count = p_port->rx.queue_size; in PORT_GetRxQueueCnt()
647 *p_rx_queue_count, p_port->rx.queue_size); in PORT_GetRxQueueCnt()
821 if (enable && (p_port->rx.queue_size != 0)) { in PORT_FlowControl()
888 if (enable && (p_port->rx.queue_size != 0)) { in PORT_FlowControl_MaxCredit()
1039 p_status->in_queue_size = (uint16_t)p_port->rx.queue_size; in PORT_GetQueueStatus()
1040 p_status->out_queue_size = (uint16_t)p_port->tx.queue_size; in PORT_GetQueueStatus()
1096 p_port->rx.queue_size = 0; in PORT_Purge()
1110 p_port->tx.queue_size = 0; in PORT_Purge()
1183 p_port->rx.queue_size -= max_len; in PORT_ReadData()
1196 p_port->rx.queue_size -= p_buf->len; in PORT_ReadData()
[all …]
Dport_utils.cc214 p_port->rx.queue_size = 0; in port_release_port()
220 p_port->tx.queue_size = 0; in port_release_port()
390 (p_port->tx.queue_size > PORT_TX_HIGH_WM) || in port_flow_control_user()
498 if (p_port->rx.peer_fc && (p_port->rx.queue_size < PORT_RX_LOW_WM) && in port_flow_control_peer()
516 else if (((p_port->rx.queue_size > PORT_RX_HIGH_WM) || in port_flow_control_peer()
Dport_rfc.cc797 if ((p_port->rx.queue_size + p_buf->len > PORT_RX_CRITICAL_WM) || in PORT_DataInd()
820 p_port->rx.queue_size += p_buf->len; in PORT_DataInd()
906 if (p_port->tx.queue_size > 0) { in port_rfc_send_tx_data()
915 p_port->tx.queue_size -= p_buf->len; in port_rfc_send_tx_data()
920 p_port->tx.queue_size); in port_rfc_send_tx_data()
926 if (p_port->tx.queue_size == 0) { in port_rfc_send_tx_data()
Dport_int.h60 uint32_t queue_size; /* Number of data bytes in the queue */ member