ESP-IDF
t_port_info::ev_mask
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (2/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
t_port_info::ev_mask
t_port_info::ev_mask field
Syntax
Show:
Summary
Declaration
from
port_int.h:189
UINT32
ev_mask
;
Examples
References
from
examples
Code
Location
Referrer
UINT32
ev_mask
;
/* Event mask for the callback */
port_int.h:189
p_port
->
ev_mask
=
0
;
port_api.c:179
RFCOMM_CreateConnection()
p_port
->
ev_mask
=
mask
;
port_api.c:453
PORT_SetEventMask()
events
&=
p_port
->
ev_mask
;
port_api.c:822
PORT_FlowControl()
events
&=
p_port
->
ev_mask
;
port_api.c:964
PORT_FlowControl_GiveCredit()
events
&=
p_port
->
ev_mask
;
port_api.c:1201
PORT_Purge()
if
(
(
p_port
->
p_callback
!=
NULL
)
&&
(
p_port
->
ev_mask
&
PORT_EV_ERR
)
)
{
port_api.c:1401
port_write()
event
&=
p_port
->
ev_mask
;
port_api.c:1478
PORT_Write()
event
&=
p_port
->
ev_mask
;
port_api.c:1595
PORT_WriteDataCO()
event
&=
p_port
->
ev_mask
;
port_api.c:1724
PORT_WriteData()
if
(
p_port
->
ev_mask
&
PORT_EV_CONNECT_ERR
)
{
port_rfc.c:161
port_start_close()
if
(
p_port
->
ev_mask
&
PORT_EV_ERR
)
{
port_rfc.c:165
port_start_close()
if
(
p_port
->
p_callback
&&
(
p_port
->
ev_mask
&
PORT_EV_CONNECT_ERR
)
)
{
port_rfc.c:228
PORT_StartCnf()
if
(
p_port
->
p_callback
&&
(
p_port
->
ev_mask
&
PORT_EV_CONNECTED
)
)
{
port_rfc.c:464
PORT_DlcEstablishInd()
if
(
p_port
->
p_callback
&&
(
p_port
->
ev_mask
&
PORT_EV_CONNECTED
)
)
{
port_rfc.c:531
PORT_DlcEstablishCnf()
event
|=
(
PORT_EV_CONNECTED
&
p_port
->
ev_mask
)
;
port_rfc.c:659
PORT_ControlInd()
event
|=
(
PORT_EV_BREAK
&
p_port
->
ev_mask
)
;
port_rfc.c:670
PORT_ControlInd()
event
=
(
p_port
->
ev_mask
&
PORT_EV_CONNECTED
)
;
port_rfc.c:711
PORT_ControlCnf()
if
(
(
p_port
->
p_callback
!=
NULL
)
&&
(
p_port
->
ev_mask
&
event
)
)
{
port_rfc.c:759
PORT_LineStatusInd()
p_port
->
p_callback
(
(
p_port
->
ev_mask
&
event
)
,
p_port
->
inx
)
;
port_rfc.c:760
PORT_LineStatusInd()
&&
(
p_port
->
ev_mask
&
PORT_EV_RXFLAG
)
)
{
port_rfc.c:895
PORT_DataInd()
events
&=
p_port
->
ev_mask
;
port_rfc.c:926
PORT_DataInd()
events
&=
p_port
->
ev_mask
;
port_rfc.c:979
PORT_FlowInd()
return
(
events
&
p_port
->
ev_mask
)
;
port_rfc.c:1040
port_rfc_send_tx_data()
if
(
p_port
->
ev_mask
&
PORT_EV_CONNECT_ERR
)
{
port_rfc.c:1089
port_rfc_closed()
p_port
->
ev_mask
=
0
;
port_utils.c:110
port_set_defaults()
mask
=
p_port
->
ev_mask
;
port_utils.c:249
port_release_port()
p_port
->
ev_mask
=
mask
;
port_utils.c:255
port_release_port()
return
(
p_port
->
ev_mask
&
events
)
;
port_utils.c:478
port_get_signal_changes()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
t_port_info::ev_mask
is written by 4 functions and is read by 20 functions:
RFCOMM_CreateConnection()
PORT_SetEventMask()
port_set_defaults()
port_release_port()
All items filtered out
t_port_info::ev_mask
PORT_FlowControl()
PORT_FlowControl_GiveCredit()
PORT_Purge()
port_write()
PORT_Write()
PORT_WriteDataCO()
PORT_WriteData()
port_start_close()
PORT_StartCnf()
PORT_DlcEstablishInd()
PORT_DlcEstablishCnf()
PORT_ControlInd()
PORT_ControlCnf()
PORT_LineStatusInd()
PORT_DataInd()
PORT_FlowInd()
port_rfc_send_tx_data()
port_rfc_closed()
port_release_port()
port_get_signal_changes()
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