Home
last modified time | relevance | path

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

/system/bt/stack/rfcomm/
Dport_api.cc633 *p_rx_queue_count = p_port->rx.queue_size; in PORT_GetRxQueueCnt()
637 *p_rx_queue_count, p_port->rx.queue_size); in PORT_GetRxQueueCnt()
811 if (enable && (p_port->rx.queue_size != 0)) { in PORT_FlowControl()
878 if (enable && (p_port->rx.queue_size != 0)) { in PORT_FlowControl_MaxCredit()
1029 p_status->in_queue_size = (uint16_t)p_port->rx.queue_size; in PORT_GetQueueStatus()
1030 p_status->out_queue_size = (uint16_t)p_port->tx.queue_size; in PORT_GetQueueStatus()
1086 p_port->rx.queue_size = 0; in PORT_Purge()
1100 p_port->tx.queue_size = 0; in PORT_Purge()
1173 p_port->rx.queue_size -= max_len; in PORT_ReadData()
1186 p_port->rx.queue_size -= p_buf->len; in PORT_ReadData()
[all …]
Dport_utils.cc213 p_port->rx.queue_size = 0; in port_release_port()
219 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.cc793 if ((p_port->rx.queue_size + p_buf->len > PORT_RX_CRITICAL_WM) || in PORT_DataInd()
816 p_port->rx.queue_size += p_buf->len; in PORT_DataInd()
903 if (p_port->tx.queue_size > 0) { in port_rfc_send_tx_data()
912 p_port->tx.queue_size -= p_buf->len; in port_rfc_send_tx_data()
917 p_port->tx.queue_size); in port_rfc_send_tx_data()
923 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