HomeSort by relevance Sort by last modified time
    Searched refs:credit_rx_max (Results 1 - 5 of 5) sorted by null

  /external/bluetooth/bluedroid/stack/rfcomm/
port_utils.c 123 /* p_port->credit_rx_max = PORT_CREDIT_RX_MAX; Determined later */
184 p_port->credit_rx_max = (PORT_RX_HIGH_WM / p_port->mtu);
185 if( p_port->credit_rx_max > PORT_RX_BUF_HIGH_WM )
186 p_port->credit_rx_max = PORT_RX_BUF_HIGH_WM;
193 RFCOMM_TRACE_DEBUG3 ("port_select_mtu credit_rx_max %d, credit_rx_low %d, rx_buf_critical %d",
194 p_port->credit_rx_max, p_port->credit_rx_low, p_port->rx_buf_critical);
520 && (p_port->credit_rx_max > p_port->credit_rx))
523 (UINT8) (p_port->credit_rx_max - p_port->credit_rx));
525 p_port->credit_rx = p_port->credit_rx_max;
539 else if (p_port->rx.queue.count >= p_port->credit_rx_max)
    [all...]
rfc_port_if.c 151 k = (p_port->credit_rx_max < RFCOMM_K_MAX) ? p_port->credit_rx_max : RFCOMM_K_MAX;
port_int.h 201 UINT16 credit_rx_max; /* Max number of credits we will allow this guy to sent */ member in struct:t_port_info
rfc_port_fsm.c 405 && (p_port->credit_rx_max > p_port->credit_rx))
407 ((BT_HDR *)p_data)->layer_specific = (UINT8) (p_port->credit_rx_max - p_port->credit_rx);
408 p_port->credit_rx = p_port->credit_rx_max;
port_rfc.c 360 our_k = (p_port->credit_rx_max < RFCOMM_K_MAX) ? p_port->credit_rx_max : RFCOMM_K_MAX;
    [all...]

Completed in 39 milliseconds