ESP-IDF
ot::Time::mValue
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
ot::Time::mValue
ot::Time::mValue field
Syntax
Show:
Summary
Declaration
from
time.hpp:246
uint32_t
mValue
;
Examples
References
from
examples
Code
Location
Scope
Referrer
uint32_t
mValue
;
time.hpp:246
uint32_t
GetValue
(
void
)
const
{
return
mValue
;
}
time.hpp:90
ot::Time
ot::Time::GetValue() const
void
SetValue
(
uint32_t
aValue
)
{
mValue
=
aValue
;
}
time.hpp:97
ot::Time
ot::Time::SetValue()
uint32_t
operator
-
(
const
Time
&
aOther
)
const
{
return
mValue
-
aOther
.
mValue
;
}
time.hpp:111
ot::Time
ot::Time::operator-() const
Time
operator
+
(
uint32_t
aDuration
)
const
{
return
Time
(
mValue
+
aDuration
)
;
}
time.hpp:120
ot::Time
ot::Time::operator+() const
Time
operator
-
(
uint32_t
aDuration
)
const
{
return
Time
(
mValue
-
aDuration
)
;
}
time.hpp:129
ot::Time
ot::Time::operator-() const
void
operator
+=
(
uint32_t
aDuration
)
{
mValue
+=
aDuration
;
}
time.hpp:136
ot::Time
ot::Time::operator+=()
void
operator
-=
(
uint32_t
aDuration
)
{
mValue
-=
aDuration
;
}
time.hpp:143
ot::Time
ot::Time::operator-=()
bool
operator
==
(
const
Time
&
aOther
)
const
{
return
mValue
==
aOther
.
mValue
;
}
time.hpp:153
ot::Time
ot::Time::operator() const
bool
operator
<
(
const
Time
&
aOther
)
const
{
return
SerialNumber
::
IsLess
(
mValue
,
aOther
.
mValue
)
;
}
time.hpp:169
ot::Time
ot::Time::operator<() const
Time
GetDistantFuture
(
void
)
const
{
return
Time
(
mValue
+
kDistantInterval
)
;
}
time.hpp:211
ot::Time
ot::Time::GetDistantFuture() const
Time
GetDistantPast
(
void
)
const
{
return
Time
(
mValue
-
kDistantInterval
)
;
}
time.hpp:223
ot::Time
ot::Time::GetDistantPast() const
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
ot::Time::mValue
is written by 3 functions and is read by 9 functions:
ot::Time::SetValue()
ot::Time::operator+=()
ot::Time::operator-=()
All items filtered out
ot::Time::mValue
ot::Time::GetValue() const
ot::Time::operator-() const
ot::Time::operator+() const
ot::Time::operator+=()
ot::Time::operator-=()
ot::Time::operator() const
ot::Time::operator<() const
ot::Time::GetDistantFuture() const
ot::Time::GetDistantPast() const
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