ESP-IDF
ot::Events::Flags
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::Events::Flags
ot::Events::Flags
Represents a bit-field indicating a list of events (with values from `Event`)
Syntax
Show:
Summary
Declaration
from
notifier.hpp:110
typedef
otChangedFlags
Flags
;
Examples
References
from
examples
Code
Location
Scope
Referrer
typedef
otChangedFlags
Flags
;
notifier.hpp:110
Events
::
Flags
flags
=
aEvents
.
GetAsFlags
(
)
;
notifier.cpp:203
ot::Notifier::LogEvents() const
for
(
uint8_t
bit
=
0
;
bit
<
BitSizeOf
(
Events
::
Flags
)
;
bit
++
)
notifier.cpp:208
ot::Notifier::LogEvents() const
bool
ContainsAny
(
Flags
aEvents
)
const
{
return
(
mEventFlags
&
aEvents
)
!=
0
;
}
notifier.hpp:141
ot::Events::ContainsAny() const
ot::Events::ContainsAny() const::aEvents
bool
ContainsAll
(
Flags
aEvents
)
const
{
return
(
mEventFlags
&
aEvents
)
==
aEvents
;
}
notifier.hpp:150
ot::Events::ContainsAll() const
ot::Events::ContainsAll() const::aEvents
Flags
GetAsFlags
(
void
)
const
{
return
mEventFlags
;
}
notifier.hpp:171
ot::Events
ot::Events::GetAsFlags() const
Flags
mEventFlags
;
notifier.hpp:174
ot::Events
ot::Events::mEventFlags
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
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
Instance
Scope
Location
Project
ot::Events::ContainsAny() const::aEvents
ot::Events::ContainsAny() const
notifier.hpp:141
ot::Events::ContainsAll() const::aEvents
ot::Events::ContainsAll() const
notifier.hpp:150
return
ot::Events::GetAsFlags() const
notifier.hpp:171
ot::Events::mEventFlags
ot::Events
notifier.hpp:174
Lifecycle
from
examples
All items filtered out
All items filtered out