Home
last modified time | relevance | path

Searched refs:aMacAddress (Results 1 – 19 of 19) sorted by relevance

/external/openthread/examples/platforms/utils/
Dlink_metrics.cpp220 LinkMetricsDataInfo *GetLinkMetricsInfoByMacAddress(const otMacAddress *aMacAddress) in GetLinkMetricsInfoByMacAddress() argument
224 VerifyOrExit(aMacAddress != nullptr); in GetLinkMetricsInfoByMacAddress()
226 if (aMacAddress->mType == OT_MAC_ADDRESS_TYPE_SHORT) in GetLinkMetricsInfoByMacAddress()
228 … dataInfo = GetLinkMetricsDataInfoActiveList().FindMatching(aMacAddress->mAddress.mShortAddress); in GetLinkMetricsInfoByMacAddress()
230 else if (aMacAddress->mType == OT_MAC_ADDRESS_TYPE_EXTENDED) in GetLinkMetricsInfoByMacAddress()
232 … dataInfo = GetLinkMetricsDataInfoActiveList().FindMatching(aMacAddress->mAddress.mExtAddress); in GetLinkMetricsInfoByMacAddress()
239 uint8_t otLinkMetricsEnhAckGenData(const otMacAddress *aMacAddress, uint8_t aLqi, int8_t aRssi, uin… in otLinkMetricsEnhAckGenData() argument
242 LinkMetricsDataInfo *dataInfo = GetLinkMetricsInfoByMacAddress(aMacAddress); in otLinkMetricsEnhAckGenData()
252 uint8_t otLinkMetricsEnhAckGetDataLen(const otMacAddress *aMacAddress) in otLinkMetricsEnhAckGetDataLen() argument
255 LinkMetricsDataInfo *dataInfo = GetLinkMetricsInfoByMacAddress(aMacAddress); in otLinkMetricsEnhAckGetDataLen()
Dlink_metrics.h98 uint8_t otLinkMetricsEnhAckGenData(const otMacAddress *aMacAddress, uint8_t aLqi, int8_t aRssi, uin…
108 uint8_t otLinkMetricsEnhAckGetDataLen(const otMacAddress *aMacAddress);
Dmac_frame.cpp114 otError otMacFrameGetSrcAddr(const otRadioFrame *aFrame, otMacAddress *aMacAddress) in otMacFrameGetSrcAddr() argument
122 GetOtMacAddress(address, aMacAddress); in otMacFrameGetSrcAddr()
128 otError otMacFrameGetDstAddr(const otRadioFrame *aFrame, otMacAddress *aMacAddress) in otMacFrameGetDstAddr() argument
136 GetOtMacAddress(address, aMacAddress); in otMacFrameGetDstAddr()
Dmac_frame.h154 otError otMacFrameGetSrcAddr(const otRadioFrame *aFrame, otMacAddress *aMacAddress);
166 otError otMacFrameGetDstAddr(const otRadioFrame *aFrame, otMacAddress *aMacAddress);
/external/openthread/src/core/thread/
Dneighbor_table.cpp76 Neighbor *NeighborTable::FindParent(const Mac::Address &aMacAddress, Neighbor::StateFilter aFilter) in FindParent() argument
78 return FindParent(Neighbor::AddressMatcher(aMacAddress, aFilter)); in FindParent()
116 Neighbor *NeighborTable::FindNeighbor(const Mac::Address &aMacAddress, Neighbor::StateFilter aFilte… in FindNeighbor() argument
118 return FindNeighbor(Neighbor::AddressMatcher(aMacAddress, aFilter)); in FindNeighbor()
170 Neighbor *NeighborTable::FindRxOnlyNeighborRouter(const Mac::Address &aMacAddress) in FindRxOnlyNeighborRouter() argument
175 neighbor = Get<RouterTable>().GetNeighbor(aMacAddress); in FindRxOnlyNeighborRouter()
Dneighbor_table.hpp127 Neighbor *FindParent(const Mac::Address & aMacAddress,
163 Neighbor *FindNeighbor(const Mac::Address & aMacAddress,
189 Neighbor *FindRxOnlyNeighborRouter(const Mac::Address &aMacAddress);
Dtopology.hpp153 AddressMatcher(const Mac::Address &aMacAddress, StateFilter aStateFilter) in AddressMatcher() argument
155 aMacAddress.IsShort() ? aMacAddress.GetShort() in AddressMatcher()
157 aMacAddress.IsExtended() ? &aMacAddress.GetExtended() : nullptr) in AddressMatcher()
Dindirect_sender.cpp48 const Mac::Address &IndirectSender::ChildInfo::GetMacAddress(Mac::Address &aMacAddress) const in GetMacAddress()
52 aMacAddress.SetShort(static_cast<const Child *>(this)->GetRloc16()); in GetMacAddress()
56 aMacAddress.SetExtended(static_cast<const Child *>(this)->GetExtAddress()); in GetMacAddress()
59 return aMacAddress; in GetMacAddress()
Dmesh_forwarder_ftd.cpp983 const Mac::Address *aMacAddress, in LogMeshFragmentHeader() argument
1021 (aMacAddress == nullptr) ? "" : ((aAction == kMessageReceive) ? ", from:" : ", to:"), in LogMeshFragmentHeader()
1022 …(aMacAddress == nullptr) ? "" : aMacAddress->ToString().AsCString(), aMeshSource.ToString().AsCStr… in LogMeshFragmentHeader()
1064 const Mac::Address *aMacAddress, in LogMeshMessage() argument
1073 …LogMeshFragmentHeader(aAction, aMessage, aMacAddress, aError, offset, meshSource, meshDest, aLogLe… in LogMeshMessage()
Dchild_table.cpp145 Child *ChildTable::FindChild(const Mac::Address &aMacAddress, Child::StateFilter aFilter) in FindChild() argument
147 return FindChild(Child::AddressMatcher(aMacAddress, aFilter)); in FindChild()
Dindirect_sender.hpp122 const Mac::Address &GetMacAddress(Mac::Address &aMacAddress) const;
Dmesh_forwarder.cpp1966 const Mac::Address *aMacAddress, in LogIp6Message() argument
1987 (aMacAddress == nullptr) ? "" : ((aAction == kMessageReceive) ? ", from:" : ", to:"), in LogIp6Message()
1988 (aMacAddress == nullptr) ? "" : aMacAddress->ToString().AsCString(), in LogIp6Message()
2007 const Mac::Address *aMacAddress) in LogMessage() argument
2041 LogIp6Message(aAction, aMessage, aMacAddress, aError, logLevel); in LogMessage()
2046 LogMeshMessage(aAction, aMessage, aMacAddress, aError, logLevel); in LogMessage()
Dchild_table.hpp181 Child *FindChild(const Mac::Address &aMacAddress, Child::StateFilter aFilter);
Drouter_table.hpp212 Router *GetNeighbor(const Mac::Address &aMacAddress);
Drouter_table.cpp401 Router *RouterTable::GetNeighbor(const Mac::Address &aMacAddress) in GetNeighbor() argument
403 return FindRouter(Router::AddressMatcher(aMacAddress, Router::kInStateValid)); in GetNeighbor()
Dmesh_forwarder.hpp556 const Mac::Address *aMacAddress,
/external/openthread/src/core/net/
Dip6_address.cpp219 void InterfaceIdentifier::ConvertToMacAddress(Mac::Address &aMacAddress) const in ConvertToMacAddress()
221 aMacAddress.SetExtended(mFields.m8); in ConvertToMacAddress()
222 aMacAddress.GetExtended().ToggleLocal(); in ConvertToMacAddress()
Dip6_address.hpp464 void ConvertToMacAddress(Mac::Address &aMacAddress) const;
/external/openthread/src/core/utils/
Dhistory_tracker.hpp383 …void RecordMessage(const Message &aMessage, const Mac::Address &aMacAddress, MessageType aT…