ESP-IDF
eloop_timeout::time
is only used within ESP-IDF.
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
ESP-IDF
eloop_timeout::time
eloop_timeout::time field
Syntax
Show:
Summary
Declaration
from
eloop.c:23
struct
os_reltime
time
;
Examples
References
from
examples
Code
Location
Referrer
struct
os_reltime
time
;
eloop.c:23
if
(
os_get_reltime
(
&
timeout
->
time
)
<
0
)
{
eloop.c:101
eloop_register_timeout()
now_sec
=
timeout
->
time
.
sec
;
eloop.c:105
eloop_register_timeout()
timeout
->
time
.
sec
+=
secs
;
eloop.c:106
eloop_register_timeout()
if
(
timeout
->
time
.
sec
<
now_sec
)
{
eloop.c:107
eloop_register_timeout()
timeout
->
time
.
usec
+=
usecs
;
eloop.c:110
eloop_register_timeout()
while
(
timeout
->
time
.
usec
>=
1000000
)
{
eloop.c:111
eloop_register_timeout()
timeout
->
time
.
sec
++
;
eloop.c:112
eloop_register_timeout()
timeout
->
time
.
usec
-=
1000000
;
eloop.c:113
eloop_register_timeout()
if
(
timeout
->
time
.
sec
<
now_sec
)
{
eloop.c:115
eloop_register_timeout()
if
(
os_reltime_before
(
&
timeout
->
time
,
&
tmp
->
time
)
)
{
eloop.c:128
eloop_register_timeout()
if
(
os_reltime_before
(
&
now
,
&
timeout
->
time
)
)
{
eloop.c:241
eloop_cancel_timeout_one()
os_reltime_sub
(
&
timeout
->
time
,
&
now
,
remaining
)
;
eloop.c:242
eloop_cancel_timeout_one()
os_reltime_sub
(
&
tmp
->
time
,
&
now
,
&
remaining
)
;
eloop.c:281
eloop_deplete_timeout()
os_reltime_sub
(
&
tmp
->
time
,
&
now
,
&
remaining
)
;
eloop.c:312
eloop_replenish_timeout()
if
(
os_reltime_before
(
&
now
,
&
timeout
->
time
)
)
{
eloop.c:340
eloop_run()
os_reltime_sub
(
&
timeout
->
time
,
&
now
,
&
tv
)
;
eloop.c:343
eloop_run()
if
(
!
os_reltime_before
(
&
now
,
&
timeout
->
time
)
)
{
eloop.c:358
eloop_run()
sec
=
timeout
->
time
.
sec
-
now
.
sec
;
eloop.c:393
eloop_destroy()
usec
=
timeout
->
time
.
usec
-
now
.
usec
;
eloop.c:394
eloop_destroy()
if
(
timeout
->
time
.
usec
<
now
.
usec
)
{
eloop.c:395
eloop_destroy()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
eloop_timeout::time
is read by 2 functions:
All items filtered out
eloop_timeout::time
eloop_register_timeout()
eloop_destroy()
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