/external/openthread/examples/platforms/utils/ |
D | link_metrics.cpp | 220 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()
|
D | link_metrics.h | 98 uint8_t otLinkMetricsEnhAckGenData(const otMacAddress *aMacAddress, uint8_t aLqi, int8_t aRssi, uin… 108 uint8_t otLinkMetricsEnhAckGetDataLen(const otMacAddress *aMacAddress);
|
D | mac_frame.cpp | 114 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()
|
D | mac_frame.h | 154 otError otMacFrameGetSrcAddr(const otRadioFrame *aFrame, otMacAddress *aMacAddress); 166 otError otMacFrameGetDstAddr(const otRadioFrame *aFrame, otMacAddress *aMacAddress);
|
/external/openthread/src/core/thread/ |
D | neighbor_table.cpp | 76 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()
|
D | neighbor_table.hpp | 127 Neighbor *FindParent(const Mac::Address & aMacAddress, 163 Neighbor *FindNeighbor(const Mac::Address & aMacAddress, 189 Neighbor *FindRxOnlyNeighborRouter(const Mac::Address &aMacAddress);
|
D | topology.hpp | 153 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()
|
D | indirect_sender.cpp | 48 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()
|
D | mesh_forwarder_ftd.cpp | 983 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()
|
D | child_table.cpp | 145 Child *ChildTable::FindChild(const Mac::Address &aMacAddress, Child::StateFilter aFilter) in FindChild() argument 147 return FindChild(Child::AddressMatcher(aMacAddress, aFilter)); in FindChild()
|
D | indirect_sender.hpp | 122 const Mac::Address &GetMacAddress(Mac::Address &aMacAddress) const;
|
D | mesh_forwarder.cpp | 1966 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()
|
D | child_table.hpp | 181 Child *FindChild(const Mac::Address &aMacAddress, Child::StateFilter aFilter);
|
D | router_table.hpp | 212 Router *GetNeighbor(const Mac::Address &aMacAddress);
|
D | router_table.cpp | 401 Router *RouterTable::GetNeighbor(const Mac::Address &aMacAddress) in GetNeighbor() argument 403 return FindRouter(Router::AddressMatcher(aMacAddress, Router::kInStateValid)); in GetNeighbor()
|
D | mesh_forwarder.hpp | 556 const Mac::Address *aMacAddress,
|
/external/openthread/src/core/net/ |
D | ip6_address.cpp | 219 void InterfaceIdentifier::ConvertToMacAddress(Mac::Address &aMacAddress) const in ConvertToMacAddress() 221 aMacAddress.SetExtended(mFields.m8); in ConvertToMacAddress() 222 aMacAddress.GetExtended().ToggleLocal(); in ConvertToMacAddress()
|
D | ip6_address.hpp | 464 void ConvertToMacAddress(Mac::Address &aMacAddress) const;
|
/external/openthread/src/core/utils/ |
D | history_tracker.hpp | 383 …void RecordMessage(const Message &aMessage, const Mac::Address &aMacAddress, MessageType aT…
|