ESP-IDF
ot::MeshCoP::SteeringData::BitIndex() const
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (2/5)...
Files
loading (4/5)...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::MeshCoP::SteeringData::BitIndex() const
ot::MeshCoP::SteeringData::BitIndex() const method
Syntax
Show:
Summary
Declaration
from
meshcop.hpp:361
uint8_t
BitIndex
(
uint8_t
aBit
)
const
;
Arguments
Argument
aBit
Examples
References
from
examples
Code
Location
Scope
Referrer
uint8_t
BitIndex
(
uint8_t
aBit
)
const
{
return
(
mLength
-
1
-
(
aBit
/
kBitsPerByte
)
)
;
}
meshcop.hpp:361
bool
GetBit
(
uint8_t
aBit
)
const
{
return
(
m8
[
BitIndex
(
aBit
)
]
&
BitFlag
(
aBit
)
)
!=
0
;
}
meshcop.hpp:364
ot::MeshCoP::SteeringData
ot::MeshCoP::SteeringData::GetBit() const
void
SetBit
(
uint8_t
aBit
)
{
m8
[
BitIndex
(
aBit
)
]
|=
BitFlag
(
aBit
)
;
}
meshcop.hpp:365
ot::MeshCoP::SteeringData
ot::MeshCoP::SteeringData::SetBit()
void
ClearBit
(
uint8_t
aBit
)
{
m8
[
BitIndex
(
aBit
)
]
&=
~
BitFlag
(
aBit
)
;
}
meshcop.hpp:366
ot::MeshCoP::SteeringData
ot::MeshCoP::SteeringData::ClearBit()
Call Tree
from
examples
ot::MeshCoP::SteeringData::BitIndex() const
is called by 3 functions:
ot::MeshCoP::SteeringData::GetBit() const
ot::MeshCoP::SteeringData::SetBit()
ot::MeshCoP::SteeringData::ClearBit()
All items filtered out
ot::MeshCoP::SteeringData::BitIndex() const
All items filtered out
Data Use
from
examples
ot::MeshCoP::SteeringData::BitIndex() const
reads 2 variables:
otSteeringData::mLength
ot::kBitsPerByte
All items filtered out
ot::MeshCoP::SteeringData::BitIndex() 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