OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:credit_rx
(Results
1 - 6
of
6
) sorted by null
/external/bluetooth/bluedroid/stack/rfcomm/
port_utils.c
122
p_port->
credit_rx
= 0;
506
if (count > p_port->
credit_rx
)
508
p_port->
credit_rx
= 0;
512
p_port->
credit_rx
-= count;
518
if ((p_port->
credit_rx
<= p_port->credit_rx_low)
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;
port_int.h
199
UINT16
credit_rx
; /* Flow control credits for rx path, this is */
member in struct:t_port_info
rfc_port_fsm.c
400
/* There might be an initial case when we reduced rx_max and
credit_rx
is still */
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;
rfc_port_if.c
152
p_port->
credit_rx
= k;
port_rfc.c
361
p_port->
credit_rx
= our_k;
[
all
...]
port_api.c
894
port_flow_control_peer(p_port, TRUE, p_port->
credit_rx
);
[
all
...]
Completed in 54 milliseconds