ESP-IDF
ot::Mac::Address::mType
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::Mac::Address::mType
ot::Mac::Address::mType field
Syntax
Show:
Summary
Declaration
from
mac_types.hpp:375
Type
mType
;
Examples
References
from
examples
Code
Location
Scope
Referrer
Type
mType
;
///< The address type (Short, Extended, or none).
mac_types.hpp:375
if
(
mType
==
kTypeExtended
)
mac_types.cpp:97
ot::Mac::Address
ot::Mac::Address::ToString() const
else
if
(
mType
==
kTypeNone
)
mac_types.cpp:101
ot::Mac::Address
ot::Mac::Address::ToString() const
:
mType
(
kTypeNone
)
mac_types.hpp:240
ot::Mac::Address
ot::Mac::Address::Address()
Type
GetType
(
void
)
const
{
return
mType
;
}
mac_types.hpp:249
ot::Mac::Address
ot::Mac::Address::GetType() const
bool
IsNone
(
void
)
const
{
return
(
mType
==
kTypeNone
)
;
}
mac_types.hpp:256
ot::Mac::Address
ot::Mac::Address::IsNone() const
bool
IsShort
(
void
)
const
{
return
(
mType
==
kTypeShort
)
;
}
mac_types.hpp:263
ot::Mac::Address
ot::Mac::Address::IsShort() const
bool
IsExtended
(
void
)
const
{
return
(
mType
==
kTypeExtended
)
;
}
mac_types.hpp:270
ot::Mac::Address
ot::Mac::Address::IsExtended() const
void
SetNone
(
void
)
{
mType
=
kTypeNone
;
}
mac_types.hpp:304
ot::Mac::Address
ot::Mac::Address::SetNone()
mType
=
kTypeShort
;
mac_types.hpp:316
ot::Mac::Address
ot::Mac::Address::SetShort()
mType
=
kTypeExtended
;
mac_types.hpp:329
ot::Mac::Address
ot::Mac::Address::SetExtended()
mType
=
kTypeExtended
;
mac_types.hpp:344
ot::Mac::Address
ot::Mac::Address::SetExtended()
bool
IsBroadcast
(
void
)
const
{
return
(
(
mType
==
kTypeShort
)
&&
(
GetShort
(
)
==
kShortAddrBroadcast
)
)
;
}
mac_types.hpp:352
ot::Mac::Address
ot::Mac::Address::IsBroadcast() const
bool
IsShortAddrInvalid
(
void
)
const
{
return
(
(
mType
==
kTypeShort
)
&&
(
GetShort
(
)
==
kShortAddrInvalid
)
)
;
}
mac_types.hpp:359
ot::Mac::Address
ot::Mac::Address::IsShortAddrInvalid() const
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
ot::Mac::Address::mType
is written by 3 functions and is read by 7 functions:
ot::Mac::Address::SetNone()
ot::Mac::Address::SetShort()
ot::Mac::Address::SetExtended()
All items filtered out
ot::Mac::Address::mType
ot::Mac::Address::GetType() const
ot::Mac::Address::IsNone() const
ot::Mac::Address::IsShort() const
ot::Mac::Address::IsExtended() const
ot::Mac::Address::IsBroadcast() const
ot::Mac::Address::IsShortAddrInvalid() const
ot::Mac::Address::ToString() 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