OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:c_flags
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_callout.c
71
if (c->
c_flags
& SCTP_CALLOUT_PENDING) {
92
c->
c_flags
= (SCTP_CALLOUT_ACTIVE | SCTP_CALLOUT_PENDING);
106
if (!(c->
c_flags
& SCTP_CALLOUT_PENDING)) {
107
c->
c_flags
&= ~SCTP_CALLOUT_ACTIVE;
111
c->
c_flags
&= ~(SCTP_CALLOUT_ACTIVE | SCTP_CALLOUT_PENDING);
145
c->
c_flags
&= ~SCTP_CALLOUT_PENDING;
sctp_callout.h
77
int
c_flags
; /* state of this entry */
member in struct:sctp_callout
93
#define SCTP_OS_TIMER_PENDING(tmr) ((tmr)->
c_flags
& SCTP_CALLOUT_PENDING)
94
#define SCTP_OS_TIMER_ACTIVE(tmr) ((tmr)->
c_flags
& SCTP_CALLOUT_ACTIVE)
95
#define SCTP_OS_TIMER_DEACTIVATE(tmr) ((tmr)->
c_flags
&= ~SCTP_CALLOUT_ACTIVE)
/external/chromium_org/third_party/usrsctp/usrsctplib/
user_sctp_timer_iterate.c
86
c->
c_flags
&= ~SCTP_CALLOUT_PENDING;
Completed in 317 milliseconds