ESP-IDF
ot::AddressResolver::Iterator
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
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::AddressResolver::Iterator
ot::AddressResolver::Iterator class
Represents an iterator used for iterating through the EID cache table entries.
Syntax
Show:
Summary
Declaration
from
address_resolver.hpp:78
class
Iterator
:
public
otCacheEntryIterator
,
public
Clearable
<
Iterator
>
{
friend
class
AddressResolver
;
static
constexpr
uint8_t
kListIndex
=
0
;
static
constexpr
uint8_t
kEntryIndex
=
1
;
const
CacheEntry
*
GetEntry
(
void
)
const
{
return
static_cast
<
const
CacheEntry
*
>
(
mData
[
kEntryIndex
]
)
;
}
void
SetEntry
(
const
CacheEntry
*
aEntry
)
{
mData
[
kEntryIndex
]
=
aEntry
;
}
const
CacheEntryList
*
GetList
(
void
)
const
{
return
static_cast
<
const
CacheEntryList
*
>
(
mData
[
kListIndex
]
)
;
}
void
SetList
(
const
CacheEntryList
*
aList
)
{
mData
[
kListIndex
]
=
aList
;
}
}
;
Fields
Field
ot::AddressResolver::Iterator::kListIndex
ot::AddressResolver::Iterator::kEntryIndex
Methods
GetEntry() const
SetEntry()
GetList() const
SetList()
Examples
References
from
examples
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