OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ev_mask
(Results
1 - 5
of
5
) sorted by null
/external/bluetooth/bluedroid/stack/rfcomm/
port_rfc.c
163
if(p_port->
ev_mask
& PORT_EV_CONNECT_ERR)
166
if(p_port->
ev_mask
& PORT_EV_ERR)
231
if (p_port->p_callback && (p_port->
ev_mask
& PORT_EV_CONNECT_ERR))
477
if (p_port->p_callback && (p_port->
ev_mask
& PORT_EV_CONNECTED))
520
if (p_port->p_callback && (p_port->
ev_mask
& PORT_EV_CONNECTED))
646
event |= (PORT_EV_CONNECTED & p_port->
ev_mask
);
658
event |= (PORT_EV_BREAK & p_port->
ev_mask
);
696
event = (p_port->
ev_mask
& PORT_EV_CONNECTED);
739
if ((p_port->p_callback != NULL) && (p_port->
ev_mask
& event))
740
p_port->p_callback ((p_port->
ev_mask
& event), p_port->inx)
[
all
...]
port_utils.c
110
p_port->
ev_mask
= 0;
246
mask = p_port->
ev_mask
;
252
p_port->
ev_mask
= mask;
480
return (p_port->
ev_mask
& events);
port_api.c
156
p_port->
ev_mask
= 0;
443
p_port->
ev_mask
= mask;
840
events &= p_port->
ev_mask
;
[
all
...]
port_int.h
193
UINT32
ev_mask
; /* Event mask for the callback */
member in struct:t_port_info
/external/netperf/
nettest_sctp.c
172
sctp_enable_events(socket,
ev_mask
)
174
int
ev_mask
;
180
if (
ev_mask
& SCTP_SNDRCV_INFO_EV)
183
if (
ev_mask
& SCTP_ASSOC_CHANGE_EV)
186
if (
ev_mask
& SCTP_PEERADDR_CHANGE_EV)
189
if (
ev_mask
& SCTP_SND_FAILED_EV)
192
if (
ev_mask
& SCTP_REMOTE_ERROR_EV)
195
if (
ev_mask
& SCTP_SHUTDOWN_EV)
198
if (
ev_mask
& SCTP_PD_EV)
201
if (
ev_mask
& SCTP_ADAPT_EV
[
all
...]
Completed in 2131 milliseconds