ESP-IDF
ot::MeshCoP::ChannelMaskTlv::Entry
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (1/5)...
Summary
Syntax
Methods
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::MeshCoP::ChannelMaskTlv::Entry
ot::MeshCoP::ChannelMaskTlv::Entry class
Syntax
Show:
Summary
Declaration
from
meshcop_tlvs.hpp:666
class
Entry
{
public
:
uint8_t
GetChannelPage
(
void
)
const
{
return
mChannelPage
;
}
void
SetChannelPage
(
uint8_t
aChannelPage
)
{
mChannelPage
=
aChannelPage
;
}
uint8_t
GetMaskLength
(
void
)
const
{
return
mMaskLength
;
}
void
SetMaskLength
(
uint8_t
aMaskLength
)
{
mMaskLength
=
aMaskLength
;
}
uint32_t
GetMask
(
void
)
const
{
return
Reverse32
(
BigEndian
::
HostSwap32
(
mMask
)
)
;
}
void
SetMask
(
uint32_t
aMask
)
{
mMask
=
BigEndian
::
HostSwap32
(
Reverse32
(
aMask
)
)
;
}
private
:
uint8_t
mChannelPage
;
uint8_t
mMaskLength
;
uint32_t
mMask
;
}
;
Fields
Field
Declared as
ot::MeshCoP::ChannelMaskTlv::Entry::mChannelPage
uint8_t
ot::MeshCoP::ChannelMaskTlv::Entry::mMaskLength
uint8_t
ot::MeshCoP::ChannelMaskTlv::Entry::mMask
uint32_t
Methods
GetChannelPage() const
SetChannelPage()
GetMaskLength() const
SetMaskLength()
GetMask() const
SetMask()
Examples
References
from
examples
Code
Location
Scope
Referrer
class
Entry
meshcop_tlvs.hpp:666
Entry
readEntry
;
meshcop_tlvs.cpp:166
ot::MeshCoP::ChannelMaskTlv::EntriesData::Parse()
const
Entry
*
entry
;
meshcop_tlvs.cpp:167
ot::MeshCoP::ChannelMaskTlv::EntriesData::Parse()
Entry
*
entry
=
reinterpret_cast
<
Entry
*
>
(
aValue
.
mData
)
;
meshcop_tlvs.cpp:222
ot::MeshCoP::ChannelMaskTlv::PrepareValue()
aValue
.
mLength
+=
sizeof
(
Entry
)
;
meshcop_tlvs.cpp:236
ot::MeshCoP::ChannelMaskTlv::PrepareValue()
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
Lifecycle
from
examples
All items filtered out
All items filtered out