ESP-IDF
ot::Neighbor::mState
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (4/5)...
Files
loading (4/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::Neighbor::mState
ot::Neighbor::mState field
Syntax
Show:
Summary
Declaration
from
neighbor.hpp:747
uint8_t
mState
:
4
;
Examples
References
from
examples
Code
Location
Scope
Referrer
uint8_t
mState
:
4
;
///< The link state
neighbor.hpp:747
VerifyOrExit
(
mState
!=
aState
)
;
neighbor.cpp:42
ot::Neighbor
ot::Neighbor::SetState()
mState
=
static_cast
<
uint8_t
>
(
aState
)
;
neighbor.cpp:43
ot::Neighbor
ot::Neighbor::SetState()
if
(
mState
==
kStateValid
)
neighbor.cpp:46
ot::Neighbor
ot::Neighbor::SetState()
State
GetState
(
void
)
const
{
return
static_cast
<
State
>
(
mState
)
;
}
neighbor.hpp:207
ot::Neighbor
ot::Neighbor::GetState() const
bool
IsStateInvalid
(
void
)
const
{
return
(
mState
==
kStateInvalid
)
;
}
neighbor.hpp:221
ot::Neighbor
ot::Neighbor::IsStateInvalid() const
bool
IsStateChildIdRequest
(
void
)
const
{
return
(
mState
==
kStateChildIdRequest
)
;
}
neighbor.hpp:228
ot::Neighbor
ot::Neighbor::IsStateChildIdRequest() const
bool
IsStateLinkRequest
(
void
)
const
{
return
(
mState
==
kStateLinkRequest
)
;
}
neighbor.hpp:235
ot::Neighbor
ot::Neighbor::IsStateLinkRequest() const
bool
IsStateParentResponse
(
void
)
const
{
return
(
mState
==
kStateParentResponse
)
;
}
neighbor.hpp:242
ot::Neighbor
ot::Neighbor::IsStateParentResponse() const
bool
IsStateRestoring
(
void
)
const
{
return
(
mState
==
kStateRestored
)
||
(
mState
==
kStateChildUpdateRequest
)
;
}
neighbor.hpp:249
ot::Neighbor
ot::Neighbor::IsStateRestoring() const
bool
IsStateRestored
(
void
)
const
{
return
(
mState
==
kStateRestored
)
;
}
neighbor.hpp:256
ot::Neighbor
ot::Neighbor::IsStateRestored() const
bool
IsStateValid
(
void
)
const
{
return
(
mState
==
kStateValid
)
;
}
neighbor.hpp:263
ot::Neighbor
ot::Neighbor::IsStateValid() const
bool
IsStateValidOrRestoring
(
void
)
const
{
return
(
mState
==
kStateValid
)
||
IsStateRestoring
(
)
;
}
neighbor.hpp:272
ot::Neighbor
ot::Neighbor::IsStateValidOrRestoring() const
bool
IsThreadVersion1p1
(
void
)
const
{
return
mState
!=
kStateInvalid
&&
mVersion
==
kThreadVersion1p1
;
}
neighbor.hpp:512
ot::Neighbor
ot::Neighbor::IsThreadVersion1p1() const
bool
IsThreadVersion1p2OrHigher
(
void
)
const
{
return
mState
!=
kStateInvalid
&&
mVersion
>=
kThreadVersion1p2
;
}
neighbor.hpp:519
ot::Neighbor
ot::Neighbor::IsThreadVersion1p2OrHigher() const
return
(
mState
!=
kStateInvalid
)
&&
(
mVersion
>=
kThreadVersion1p2
)
;
neighbor.hpp:535
ot::Neighbor
ot::Neighbor::IsEnhancedKeepAliveSupported() const
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
ot::Neighbor::mState
is written by 1 function and is read by 13 functions:
ot::Neighbor::SetState()
All items filtered out
ot::Neighbor::mState
ot::Neighbor::GetState() const
ot::Neighbor::IsStateInvalid() const
ot::Neighbor::IsStateChildIdRequest() const
ot::Neighbor::IsStateLinkRequest() const
ot::Neighbor::IsStateParentResponse() const
ot::Neighbor::IsStateRestoring() const
ot::Neighbor::IsStateRestored() const
ot::Neighbor::IsStateValid() const
ot::Neighbor::IsStateValidOrRestoring() const
ot::Neighbor::IsThreadVersion1p1() const
ot::Neighbor::IsThreadVersion1p2OrHigher() const
ot::Neighbor::IsEnhancedKeepAliveSupported() const
ot::Neighbor::SetState()
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