ESP-IDF
tRFC_CB::rfc
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (1/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
tRFC_CB::rfc
tRFC_CB::rfc field
Syntax
Show:
Summary
Declaration
from
rfc_int.h:221
tRFCOMM_CB
rfc
;
Examples
References
from
examples
Code
Location
Referrer
tRFCOMM_CB
rfc
;
rfc_int.h:221
rfc_cb
.
rfc
.
last_mux
=
MAX_BD_CONNECTIONS
;
port_api.c:1799
RFCOMM_Init()
for
(
xx
=
0
,
yy
=
rfc_cb
.
rfc
.
last_port
+
1
;
xx
<
MAX_RFC_PORTS
;
xx
++
,
yy
++
)
{
port_utils.c:69
port_allocate_port()
rfc_cb
.
rfc
.
last_port
=
yy
;
port_utils.c:87
port_allocate_port()
RFCOMM_TRACE_DEBUG
(
"rfc_cb.port.port[%d]:%p allocated, last_port:%d"
,
yy
,
p_port
,
rfc_cb
.
rfc
.
last_port
)
;
port_utils.c:88
port_allocate_port()
tL2CAP_APPL_INFO
*
p_l2c
=
&
rfc_cb
.
rfc
.
reg_info
;
rfc_l2cap_if.c:73
rfcomm_l2cap_if_init()
event
=
rfc_parse_data
(
p_mcb
,
&
rfc_cb
.
rfc
.
rx_frame
,
p_buf
)
;
rfc_l2cap_if.c:313
RFCOMM_BufDataInd()
if
(
rfc_cb
.
rfc
.
rx_frame
.
dlci
==
RFCOMM_MX_DLCI
)
{
rfc_l2cap_if.c:321
RFCOMM_BufDataInd()
if
(
(
(
p_port
=
port_find_mcb_dlci_port
(
p_mcb
,
rfc_cb
.
rfc
.
rx_frame
.
dlci
)
)
==
NULL
)
rfc_l2cap_if.c:335
RFCOMM_BufDataInd()
if
(
(
p_mcb
->
is_initiator
&&
!
rfc_cb
.
rfc
.
rx_frame
.
cr
)
rfc_l2cap_if.c:339
RFCOMM_BufDataInd()
||
(
!
p_mcb
->
is_initiator
&&
rfc_cb
.
rfc
.
rx_frame
.
cr
)
)
{
rfc_l2cap_if.c:340
RFCOMM_BufDataInd()
rfc_send_dm
(
p_mcb
,
rfc_cb
.
rfc
.
rx_frame
.
dlci
,
rfc_cb
.
rfc
.
rx_frame
.
pf
)
;
rfc_l2cap_if.c:341
RFCOMM_BufDataInd()
if
(
(
p_port
=
port_find_dlci_port
(
rfc_cb
.
rfc
.
rx_frame
.
dlci
)
)
==
NULL
)
{
rfc_l2cap_if.c:347
RFCOMM_BufDataInd()
rfc_send_dm
(
p_mcb
,
rfc_cb
.
rfc
.
rx_frame
.
dlci
,
TRUE
)
;
rfc_l2cap_if.c:348
RFCOMM_BufDataInd()
p_mcb
->
port_inx
[
rfc_cb
.
rfc
.
rx_frame
.
dlci
]
=
p_port
->
inx
;
rfc_l2cap_if.c:352
RFCOMM_BufDataInd()
if
(
rfc_cb
.
rfc
.
rx_frame
.
credit
!=
0
)
{
rfc_l2cap_if.c:363
RFCOMM_BufDataInd()
rfc_inc_credit
(
p_port
,
rfc_cb
.
rfc
.
rx_frame
.
credit
)
;
rfc_l2cap_if.c:364
RFCOMM_BufDataInd()
if
(
(
p_mcb
=
rfc_cb
.
rfc
.
p_rfc_lcid_mcb
[
lcid
-
L2CAP_BASE_APPL_CID
]
)
!=
NULL
)
{
rfc_l2cap_if.c:409
rfc_find_lcid_mcb()
rfc_cb
.
rfc
.
p_rfc_lcid_mcb
[
lcid
-
L2CAP_BASE_APPL_CID
]
=
p_mcb
;
rfc_l2cap_if.c:429
rfc_save_lcid_mcb()
rfc_cb
.
rfc
.
peer_rx_disabled
=
FALSE
;
rfc_port_fsm.c:811
rfc_process_fcon()
rfc_cb
.
rfc
.
peer_rx_disabled
=
TRUE
;
rfc_port_fsm.c:832
rfc_process_fcoff()
if
(
!
rfc_cb
.
rfc
.
peer_rx_disabled
)
{
rfc_port_fsm.c:858
rfc_process_l2cap_congestion()
*
p_data
++
=
rfc_cb
.
rfc
.
rx_frame
.
u
.
pn
.
priority
;
rfc_ts_frames.c:259
rfc_send_pn()
*
p_data
++
=
rfc_cb
.
rfc
.
rx_frame
.
ea
|
rfc_ts_frames.c:442
rfc_send_nsc()
(
rfc_cb
.
rfc
.
rx_frame
.
cr
<
<
RFCOMM_SHIFT_CR
)
|
rfc_ts_frames.c:443
rfc_send_nsc()
rfc_cb
.
rfc
.
rx_frame
.
type
;
rfc_ts_frames.c:444
rfc_send_nsc()
MX_FRAME
*
p_rx_frame
=
&
rfc_cb
.
rfc
.
rx_frame
;
rfc_ts_frames.c:747
rfc_process_mx_message()
for
(
i
=
0
,
j
=
rfc_cb
.
rfc
.
last_mux
+
1
;
i
<
MAX_BD_CONNECTIONS
;
i
++
,
j
++
)
{
rfc_utils.c:163
rfc_alloc_multiplexer_channel()
rfc_cb
.
rfc
.
last_mux
=
(
UINT8
)
j
;
rfc_utils.c:184
rfc_alloc_multiplexer_channel()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
tRFC_CB::rfc
is read by 13 functions:
All items filtered out
tRFC_CB::rfc
RFCOMM_Init()
port_allocate_port()
rfcomm_l2cap_if_init()
RFCOMM_BufDataInd()
rfc_find_lcid_mcb()
rfc_save_lcid_mcb()
rfc_process_fcon()
rfc_process_fcoff()
rfc_process_l2cap_congestion()
rfc_send_pn()
rfc_send_nsc()
rfc_process_mx_message()
rfc_alloc_multiplexer_channel()
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