/openthread-latest/tests/unit/ |
D | test_link_metrics_manager.cpp | 59 otExtAddress mExtAddress; member 131 child->SetExtAddress((AsCoreType(&mTestChildList[i].mExtAddress))); in TestLinkMetricsManager() 145 VerifyOrQuit(subject.mExtAddress == AsCoreType(&mTestChildList[1 - index].mExtAddress)); in TestLinkMetricsManager() 150 … subject1 = linkMetricsMgr->mSubjectList.FindMatching(AsCoreType(&mTestChildList[0].mExtAddress)); in TestLinkMetricsManager() 151 … subject2 = linkMetricsMgr->mSubjectList.FindMatching(AsCoreType(&mTestChildList[1].mExtAddress)); in TestLinkMetricsManager() 164 linkLocalAddr.SetToLinkLocalAddress(AsCoreType(&mTestChildList[0].mExtAddress)); in TestLinkMetricsManager() 173 …linkMetricsMgr->HandleEnhAckIe(anyShortAddress, &mTestChildList[0].mExtAddress, &linkMetricsValues… in TestLinkMetricsManager() 186 Child *child2 = childTable->FindChild(subject2->mExtAddress, Child::kInStateValid); in TestLinkMetricsManager() 189 … subject2 = linkMetricsMgr->mSubjectList.FindMatching(AsCoreType(&mTestChildList[1].mExtAddress)); in TestLinkMetricsManager() 193 … subject1 = linkMetricsMgr->mSubjectList.FindMatching(AsCoreType(&mTestChildList[0].mExtAddress)); in TestLinkMetricsManager() [all …]
|
D | test_child_table.cpp | 52 otExtAddress mExtAddress; member 67 (aChild.GetExtAddress() == static_cast<const Mac::ExtAddress &>(aTestChild.mExtAddress)); in ChildMatches() 139 … aTable.FindChild(static_cast<const Mac::ExtAddress &>(aChildList[listIndex].mExtAddress), filter); in VerifyChildTableContent() 148 … address.SetExtended(static_cast<const Mac::ExtAddress &>(aChildList[listIndex].mExtAddress)); in VerifyChildTableContent() 337 child->SetExtAddress((static_cast<const Mac::ExtAddress &>(testChildList[i].mExtAddress))); in TestChildTable() 359 … child->SetExtAddress((static_cast<const Mac::ExtAddress &>(testChildList[i - 1].mExtAddress))); in TestChildTable()
|
/openthread-latest/src/core/mac/ |
D | mac_filter.cpp | 60 if (entry.IsInUse() && (aExtAddress == entry.mExtAddress)) in FindEntry() 94 entry->mExtAddress = aExtAddress; in AddAddress() 131 aEntry.mExtAddress = entry.mExtAddress; in GetNextAddress() 152 entry->mExtAddress = aExtAddress; in AddRssIn() 193 aEntry.mExtAddress = entry.mExtAddress; in GetNextRssIn() 204 AsCoreType(&aEntry.mExtAddress).Fill(0xff); in GetNextRssIn()
|
D | mac_types.hpp | 298 const ExtAddress &GetExtended(void) const { return mShared.mExtAddress; } in GetExtended() 307 ExtAddress &GetExtended(void) { return mShared.mExtAddress; } in GetExtended() 338 mShared.mExtAddress = aExtAddress; in SetExtended() 353 mShared.mExtAddress.Set(aBuffer, aByteOrder); in SetExtended() 392 ExtAddress mExtAddress; ///< The IEEE 802.15.4 Extended Address. member
|
D | mac_links.hpp | 373 mExtAddress; in GetExtAddress() 387 mExtAddress = aExtAddress; in SetExtAddress() 710 ExtAddress mExtAddress; member in ot::Mac::Links
|
D | sub_mac.hpp | 254 const ExtAddress &GetExtAddress(void) const { return mExtAddress; } in GetExtAddress() 645 ExtAddress mExtAddress; member in ot::Mac::SubMac
|
D | mac_filter.hpp | 233 ExtAddress mExtAddress; // IEEE 802.15.4 Extended Address. member
|
/openthread-latest/src/core/common/ |
D | settings.hpp | 262 const Mac::ExtAddress &GetExtAddress(void) const { return mExtAddress; } in GetExtAddress() 269 void SetExtAddress(const Mac::ExtAddress &aExtAddress) { mExtAddress = aExtAddress; } in SetExtAddress() 309 Mac::ExtAddress mExtAddress; ///< Extended Address member in ot::SettingsBase::NetworkInfo 340 const Mac::ExtAddress &GetExtAddress(void) const { return mExtAddress; } in GetExtAddress() 347 void SetExtAddress(const Mac::ExtAddress &aExtAddress) { mExtAddress = aExtAddress; } in SetExtAddress() 366 Mac::ExtAddress mExtAddress; ///< Extended Address member in ot::SettingsBase::ParentInfo 396 const Mac::ExtAddress &GetExtAddress(void) const { return mExtAddress; } in GetExtAddress() 403 void SetExtAddress(const Mac::ExtAddress &aExtAddress) { mExtAddress = aExtAddress; } in SetExtAddress() 464 Mac::ExtAddress mExtAddress; ///< Extended Address member in ot::SettingsBase::ChildInfo
|
/openthread-latest/examples/platforms/utils/ |
D | link_metrics.cpp | 68 memcpy(mExtAddress.m8, aExtAddress.m8, sizeof(aExtAddress)); in Set() 138 return memcmp(&mExtAddress, &aExtAddress, sizeof(otExtAddress)) == 0; in Matches() 146 otExtAddress mExtAddress; member in LinkMetricsDataInfo 228 … dataInfo = GetLinkMetricsDataInfoActiveList().FindMatching(aMacAddress->mAddress.mExtAddress); in GetLinkMetricsInfoByMacAddress()
|
D | mac_frame.h | 62 otExtAddress mExtAddress; ///< The IEEE 802.15.4 Extended Address. member 345 otExtAddress mExtAddress; ///< In little-endian byte order. member
|
/openthread-latest/include/openthread/ |
D | mesh_diag.h | 93 otExtAddress mExtAddress; ///< Extended MAC address. member 234 otExtAddress mExtAddress; ///< Extended Address. member 338 otExtAddress mExtAddress; ///< Extended Address. member
|
D | thread.h | 96 otExtAddress mExtAddress; ///< IEEE 802.15.4 Extended Address member 136 otExtAddress mExtAddress; ///< IEEE 802.15.4 Extended Address member 979 otExtAddress mExtAddress; ///< IEEE 802.15.4 Extended Address of the requester member
|
D | trel.h | 63 otExtAddress mExtAddress; ///< The Extended MAC Address of TREL peer. member
|
/openthread-latest/src/core/utils/ |
D | link_metrics_manager.cpp | 133 if (!mSubjectList.ContainsMatching(AsCoreType(&neighborInfo.mExtAddress))) in UpdateSubjects() 140 subject->mExtAddress = AsCoreType(&neighborInfo.mExtAddress); in UpdateSubjects() 283 Neighbor *neighbor = aInstance.Get<NeighborTable>().FindNeighbor(mExtAddress); in ConfigureEap() 309 Neighbor *neighbor = aInstance.Get<NeighborTable>().FindNeighbor(mExtAddress); in UnregisterEap()
|
D | link_metrics_manager.hpp | 127 Mac::ExtAddress mExtAddress; ///< Use the extended address to identify the neighbor. member 136 … bool Matches(const Mac::ExtAddress &aExtAddress) const { return mExtAddress == aExtAddress; } in Matches()
|
D | history_tracker.cpp | 192 entry->mExtAddress = aInfo.mInfo.mChild.mExtAddress; in RecordNeighborEvent() 203 entry->mExtAddress = aInfo.mInfo.mRouter.mExtAddress; in RecordNeighborEvent()
|
/openthread-latest/src/core/thread/ |
D | neighbor.cpp | 74 if (mExtAddress != nullptr) in Matches() 76 VerifyOrExit(*mExtAddress == aNeighbor.GetExtAddress()); in Matches() 89 mExtAddress = aNeighbor.GetExtAddress(); in SetFrom()
|
D | network_diagnostic_tlvs.hpp | 686 const Mac::ExtAddress &GetExtAddress(void) const { return mExtAddress; } in GetExtAddress() 795 Mac::ExtAddress mExtAddress; // Extended Address. member in ot::NetworkDiagnostic::ChildTlv 885 const Mac::ExtAddress &GetExtAddress(void) const { return mExtAddress; } in GetExtAddress() 945 Mac::ExtAddress mExtAddress; // Extended Address. member in ot::NetworkDiagnostic::RouterNeighborTlv
|
D | network_diagnostic_tlvs.cpp | 56 mExtAddress = aChild.GetExtAddress(); in InitFrom() 86 mExtAddress = aRouter.GetExtAddress(); in InitFrom()
|
D | router.cpp | 45 mExtAddress = aRouter.GetExtAddress(); in SetFrom()
|
D | neighbor.hpp | 179 , mExtAddress(aExtAddress) in AddressMatcher() 185 const Mac::ExtAddress *mExtAddress; member in ot::Neighbor::AddressMatcher
|
/openthread-latest/src/core/radio/ |
D | trel_interface.hpp | 97 …ExtAddress &GetExtAddress(void) const { return static_cast<const Mac::ExtAddress &>(mExtAddress); } in GetExtAddress() 153 void SetExtAddress(const Mac::ExtAddress &aExtAddress) { mExtAddress = aExtAddress; } in SetExtAddress()
|
/openthread-latest/src/cli/ |
D | cli_mesh_diag.cpp | 313 OutputExtAddress(aRouterInfo->mExtAddress); in HandleMeshDiagDiscoverDone() 439 OutputExtAddress(aChildEntry->mExtAddress); in HandleMeshDiagQueryChildTableResult() 485 OutputExtAddress(aNeighborEntry->mExtAddress); in HandleMeshDiagQueryRouterNeighborTableResult()
|
D | cli_mac_filter.cpp | 76 if (IsDefaultRss(entry.mExtAddress)) in OutputFilter() 124 OutputExtAddress(aEntry.mExtAddress); in OutputEntry()
|
/openthread-latest/tests/nexus/platform/ |
D | nexus_radio.hpp | 71 Mac::ExtAddress mExtAddress; member
|