lwIP
sys_timeo::next
is only used within lwIP.
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
lwIP
sys_timeo::next
sys_timeo::next field
Syntax
Show:
Summary
Declaration
from
timeouts.h:94
struct
sys_timeo
*
next
;
Examples
References
from
examples
Code
Location
Referrer
struct
sys_timeo
*
next
;
timeouts.h:94
timeout
->
next
=
NULL
;
timeouts.c:198
sys_timeout_abs()
timeout
->
next
=
next_timeout
;
timeouts.c:214
sys_timeout_abs()
for
(
t
=
next_timeout
;
t
!=
NULL
;
t
=
t
->
next
)
{
timeouts.c:217
sys_timeout_abs()
if
(
(
t
->
next
==
NULL
)
||
TIME_LESS_THAN
(
timeout
->
time
,
t
->
next
->
time
)
)
{
timeouts.c:218
sys_timeout_abs()
timeout
->
next
=
t
->
next
;
timeouts.c:219
sys_timeout_abs()
t
->
next
=
timeout
;
timeouts.c:220
sys_timeout_abs()
for
(
t
=
next_timeout
,
prev_t
=
NULL
;
t
!=
NULL
;
prev_t
=
t
,
t
=
t
->
next
)
{
timeouts.c:340
sys_untimeout()
next_timeout
=
t
->
next
;
timeouts.c:345
sys_untimeout()
prev_t
->
next
=
t
->
next
;
timeouts.c:347
sys_untimeout()
next_timeout
=
tmptimeout
->
next
;
timeouts.c:391
sys_check_timeouts()
for
(
t
=
next_timeout
;
t
!=
NULL
;
t
=
t
->
next
)
{
timeouts.c:430
sys_restart_timeouts()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
sys_timeo::next
is written by 2 functions and is read by 4 functions:
sys_timeout_abs()
sys_untimeout()
All items filtered out
sys_timeo::next
sys_timeout_abs()
sys_untimeout()
sys_check_timeouts()
sys_restart_timeouts()
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