ESP-IDF
tL2C_FCRB::next_seq_expected
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
tL2C_FCRB::next_seq_expected
tL2C_FCRB::next_seq_expected field
Syntax
Show:
Summary
Declaration
from
l2c_int.h:177
UINT8
next_seq_expected
;
Examples
References
from
examples
Code
Location
Referrer
UINT8
next_seq_expected
;
/* Next peer sequence number expected */
l2c_int.h:177
p_ccb
->
fcrb
.
next_seq_expected
-=
back_track
;
l2c_api.c:1048
L2CA_SendTestSFrame()
ctrl_word
|=
(
p_fcrb
->
next_seq_expected
)
<
<
L2CAP_FCR_REQ_SEQ_BITS_SHIFT
;
l2c_fcr.c:439
prepare_I_frame()
p_fcrb
->
last_ack_sent
=
p_ccb
->
fcrb
.
next_seq_expected
;
l2c_fcr.c:441
prepare_I_frame()
ctrl_word
|=
(
p_ccb
->
fcrb
.
next_seq_expected
<
<
L2CAP_FCR_REQ_SEQ_BITS_SHIFT
)
;
l2c_fcr.c:528
l2c_fcr_send_S_frame()
p_ccb
->
fcrb
.
last_ack_sent
=
p_ccb
->
fcrb
.
next_seq_expected
;
l2c_fcr.c:581
l2c_fcr_send_S_frame()
p_ccb
->
fcrb
.
next_seq_expected
)
;
l2c_fcr.c:764
l2c_fcr_proc_pdu()
&&
(
p_ccb
->
fcrb
.
next_seq_expected
!=
p_ccb
->
fcrb
.
last_ack_sent
)
)
{
l2c_fcr.c:784
l2c_fcr_proc_pdu()
p_ccb
->
local_cid
,
p_ccb
->
fcrb
.
local_busy
,
p_ccb
->
fcrb
.
rej_sent
,
p_ccb
->
fcrb
.
srej_sent
,
p_ccb
->
fcrb
.
next_seq_expected
,
l2c_fcr.c:788
l2c_fcr_proc_pdu()
p_ccb
->
chnl_state
,
p_ccb
->
fcrb
.
wait_ack
,
p_ccb
->
fcrb
.
next_seq_expected
,
p_ccb
->
fcrb
.
last_ack_sent
)
;
l2c_fcr.c:851
l2c_fcr_proc_ack_tout()
&&
(
p_ccb
->
fcrb
.
last_ack_sent
!=
p_ccb
->
fcrb
.
next_seq_expected
)
)
{
l2c_fcr.c:854
l2c_fcr_proc_ack_tout()
if
(
(
tx_seq
!=
p_fcrb
->
next_seq_expected
)
&&
(
p_fcrb
->
local_busy
)
)
{
l2c_fcr.c:1077
process_i_frame()
if
(
tx_seq
!=
p_fcrb
->
next_seq_expected
)
{
l2c_fcr.c:1085
process_i_frame()
num_lost
=
(
tx_seq
-
p_fcrb
->
next_seq_expected
)
&
L2CAP_FCR_SEQ_MODULO
;
l2c_fcr.c:1086
process_i_frame()
L2CAP_TRACE_WARNING
(
"process_i_frame() Dropping Duplicate Frame tx_seq:%u ExpectedTxSeq %u"
,
tx_seq
,
p_fcrb
->
next_seq_expected
)
;
l2c_fcr.c:1091
process_i_frame()
p_ccb
->
local_cid
,
num_lost
,
tx_seq
,
p_fcrb
->
next_seq_expected
,
p_fcrb
->
rej_sent
,
p_fcrb
->
srej_sent
)
;
l2c_fcr.c:1095
process_i_frame()
num_lost
,
tx_seq
,
p_fcrb
->
next_seq_expected
,
p_fcrb
->
rej_sent
)
;
l2c_fcr.c:1121
process_i_frame()
p_ccb
->
local_cid
,
num_lost
,
tx_seq
,
p_fcrb
->
next_seq_expected
,
p_fcrb
->
srej_sent
)
;
l2c_fcr.c:1134
process_i_frame()
p_ccb
->
local_cid
,
tx_seq
,
p_fcrb
->
next_seq_expected
,
p_fcrb
->
rej_sent
)
;
l2c_fcr.c:1140
process_i_frame()
p_fcrb
->
next_seq_expected
=
(
tx_seq
+
1
)
&
L2CAP_FCR_SEQ_MODULO
;
l2c_fcr.c:1168
process_i_frame()
num_to_ack
=
(
p_fcrb
->
next_seq_expected
-
p_fcrb
->
last_ack_sent
)
&
L2CAP_FCR_SEQ_MODULO
;
l2c_fcr.c:1178
process_i_frame()
if
(
tx_seq
!=
p_ccb
->
fcrb
.
next_seq_expected
)
{
l2c_fcr.c:1268
process_stream_frame()
p_ccb
->
local_cid
,
p_ccb
->
fcrb
.
next_seq_expected
,
tx_seq
,
p_ccb
->
fcrb
.
p_rx_sdu
)
;
l2c_fcr.c:1270
process_stream_frame()
p_ccb
->
fcrb
.
next_seq_expected
=
(
tx_seq
+
1
)
&
L2CAP_FCR_SEQ_MODULO
;
l2c_fcr.c:1279
process_stream_frame()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
tL2C_FCRB::next_seq_expected
is written by 3 functions and is read by 7 functions:
L2CA_SendTestSFrame()
process_i_frame()
process_stream_frame()
All items filtered out
tL2C_FCRB::next_seq_expected
L2CA_SendTestSFrame()
prepare_I_frame()
l2c_fcr_send_S_frame()
l2c_fcr_proc_pdu()
l2c_fcr_proc_ack_tout()
process_i_frame()
process_stream_frame()
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