ESP-IDF
ble_l2cap_chan::coc_rx
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (4/5)...
Files
loading (4/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ble_l2cap_chan::coc_rx
ble_l2cap_chan::coc_rx field
Syntax
Show:
Summary
Declaration
from
ble_l2cap_priv.h:92
struct
ble_l2cap_coc_endpoint
coc_rx
;
Examples
References
from
examples
Code
Location
Referrer
struct
ble_l2cap_coc_endpoint
coc_rx
;
ble_l2cap_priv.h:92
chan_info
->
our_coc_mtu
=
chan
->
coc_rx
.
mtu
;
ble_l2cap.c:175
ble_l2cap_get_chan_info()
rx
=
&
chan
->
coc_rx
;
ble_l2cap_coc.c:195
ble_l2cap_coc_rx_fn()
rx_sdu
=
rx
->
sdus
[
chan
->
coc_rx
.
current_sdu_idx
]
;
ble_l2cap_coc.c:198
ble_l2cap_coc_rx_fn()
sdu_len
,
om_total
,
rx
->
credits
,
chan
->
coc_rx
.
current_sdu_idx
)
;
ble_l2cap_coc.c:238
ble_l2cap_coc_rx_fn()
chan
->
coc_rx
.
current_sdu_idx
=
ble_l2cap_coc.c:287
ble_l2cap_coc_rx_fn()
(
chan
->
coc_rx
.
current_sdu_idx
+
1
)
%
BLE_L2CAP_SDU_BUFF_CNT
;
ble_l2cap_coc.c:288
ble_l2cap_coc_rx_fn()
OS_MBUF_PKTLEN
(
rx_sdu
)
,
rx
->
credits
,
chan
->
coc_rx
.
current_sdu_idx
)
;
ble_l2cap_coc.c:311
ble_l2cap_coc_rx_fn()
chan
->
coc_rx
.
mtu
=
mtu
;
ble_l2cap_coc.c:321
ble_l2cap_coc_set_new_mtu_mps()
chan
->
coc_rx
.
mtu
=
mtu
;
ble_l2cap_coc.c:346
ble_l2cap_coc_chan_alloc()
chan
->
coc_rx
.
sdus
[
0
]
=
sdu_rx
;
ble_l2cap_coc.c:347
ble_l2cap_coc_chan_alloc()
chan
->
coc_rx
.
sdus
[
i
]
=
NULL
;
ble_l2cap_coc.c:349
ble_l2cap_coc_chan_alloc()
chan
->
coc_rx
.
current_sdu_idx
=
0
;
ble_l2cap_coc.c:351
ble_l2cap_coc_chan_alloc()
chan
->
coc_rx
.
next_sdu_alloc_idx
=
0
;
ble_l2cap_coc.c:354
ble_l2cap_coc_chan_alloc()
chan
->
coc_rx
.
next_sdu_alloc_idx
=
chan
->
coc_rx
.
sdus
[
0
]
==
NULL
?
0
:
1
;
ble_l2cap_coc.c:356
ble_l2cap_coc_chan_alloc()
chan
->
coc_rx
.
credits
=
mtu
/
chan
->
my_coc_mps
;
ble_l2cap_coc.c:362
ble_l2cap_coc_chan_alloc()
chan
->
coc_rx
.
credits
++
;
ble_l2cap_coc.c:364
ble_l2cap_coc_chan_alloc()
chan
->
initial_credits
=
chan
->
coc_rx
.
credits
;
ble_l2cap_coc.c:367
ble_l2cap_coc_chan_alloc()
os_mbuf_free_chain
(
chan
->
coc_rx
.
sdus
[
i
]
)
;
ble_l2cap_coc.c:425
ble_l2cap_coc_cleanup_chan()
if
(
chan
->
coc_rx
.
sdus
[
0
]
!=
NULL
&&
ble_l2cap_coc.c:619
ble_l2cap_coc_recv_ready()
chan
->
coc_rx
.
next_sdu_alloc_idx
==
chan
->
coc_rx
.
current_sdu_idx
&&
ble_l2cap_coc.c:620
ble_l2cap_coc_recv_ready()
chan
->
coc_rx
.
sdus
[
chan
->
coc_rx
.
next_sdu_alloc_idx
]
=
sdu_rx
;
ble_l2cap_coc.c:625
ble_l2cap_coc_recv_ready()
chan
->
coc_rx
.
next_sdu_alloc_idx
=
ble_l2cap_coc.c:626
ble_l2cap_coc_recv_ready()
(
chan
->
coc_rx
.
next_sdu_alloc_idx
+
1
)
%
BLE_L2CAP_SDU_BUFF_CNT
;
ble_l2cap_coc.c:627
ble_l2cap_coc_recv_ready()
if
(
chan
->
disable_auto_credit_update
==
false
&&
chan
->
coc_rx
.
credits
<
c
->
initial_credits
)
{
ble_l2cap_coc.c:640
ble_l2cap_coc_recv_ready()
c
->
initial_credits
-
chan
->
coc_rx
.
credits
)
;
ble_l2cap_coc.c:643
ble_l2cap_coc_recv_ready()
chan
->
coc_rx
.
credits
=
c
->
initial_credits
;
ble_l2cap_coc.c:645
ble_l2cap_coc_recv_ready()
rsp
->
credits
=
htole16
(
chan
->
coc_rx
.
credits
)
;
ble_l2cap_sig.c:1253
ble_l2cap_sig_coc_req_rx()
rsp
->
mtu
=
htole16
(
chan
->
coc_rx
.
mtu
)
;
ble_l2cap_sig.c:1255
ble_l2cap_sig_coc_req_rx()
req
->
mtu
=
htole16
(
chan
->
coc_rx
.
mtu
)
;
ble_l2cap_sig.c:1391
ble_l2cap_sig_coc_connect()
req
->
credits
=
htole16
(
chan
->
coc_rx
.
credits
)
;
ble_l2cap_sig.c:1393
ble_l2cap_sig_coc_connect()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
ble_l2cap_chan::coc_rx
is read by 8 functions:
All items filtered out
ble_l2cap_chan::coc_rx
ble_l2cap_coc_rx_fn()
ble_l2cap_coc_set_new_mtu_mps()
ble_l2cap_coc_chan_alloc()
ble_l2cap_coc_cleanup_chan()
ble_l2cap_coc_recv_ready()
ble_l2cap_sig_coc_req_rx()
ble_l2cap_sig_coc_connect()
ble_l2cap_get_chan_info()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out