Home
last modified time | relevance | path

Searched refs:credit_rx_max (Results 1 – 5 of 5) sorted by relevance

/system/bt/stack/rfcomm/
Dport_utils.cc183 p_port->credit_rx_max = (PORT_RX_HIGH_WM / p_port->mtu); in port_select_mtu()
184 if (p_port->credit_rx_max > PORT_RX_BUF_HIGH_WM) in port_select_mtu()
185 p_port->credit_rx_max = PORT_RX_BUF_HIGH_WM; in port_select_mtu()
194 p_port->credit_rx_max, p_port->credit_rx_low, p_port->rx_buf_critical); in port_select_mtu()
480 (p_port->credit_rx_max > p_port->credit_rx)) { in port_flow_control_peer()
482 (uint8_t)(p_port->credit_rx_max - p_port->credit_rx)); in port_flow_control_peer()
484 p_port->credit_rx = p_port->credit_rx_max; in port_flow_control_peer()
496 else if (fixed_queue_length(p_port->rx.queue) >= p_port->credit_rx_max) { in port_flow_control_peer()
Drfc_port_if.cc151 k = (p_port->credit_rx_max < RFCOMM_K_MAX) ? p_port->credit_rx_max in RFCOMM_ParNegReq()
Dport_int.h200 credit_rx_max; /* Max number of credits we will allow this guy to sent */ member
Drfc_port_fsm.cc405 (p_port->credit_rx_max > p_port->credit_rx)) { in rfc_port_sm_opened()
407 (uint8_t)(p_port->credit_rx_max - p_port->credit_rx); in rfc_port_sm_opened()
408 p_port->credit_rx = p_port->credit_rx_max; in rfc_port_sm_opened()
Dport_rfc.cc336 our_k = (p_port->credit_rx_max < RFCOMM_K_MAX) ? p_port->credit_rx_max in PORT_ParNegInd()