Home
last modified time | relevance | path

Searched refs:extAddress (Results 1 – 15 of 15) sorted by relevance

/openthread-latest/src/ncp/
Dncp_base_radio.cpp313 const otExtAddress *extAddress; in HandlePropertySet() local
315 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
317 SuccessOrExit(error = otLinkRawSrcMatchAddExtEntry(mInstance, extAddress)); in HandlePropertySet()
340 const otExtAddress *extAddress; in HandlePropertyRemove() local
342 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
345 error = otLinkRawSrcMatchClearExtEntry(mInstance, extAddress); in HandlePropertyRemove()
367 const otExtAddress *extAddress = nullptr; in HandlePropertyInsert() local
369 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
371 error = otLinkRawSrcMatchAddExtEntry(mInstance, extAddress); in HandlePropertyInsert()
619 const otExtAddress *extAddress; in HandlePropertySet() local
[all …]
Dncp_base_mtd.cpp3056 const otExtAddress *extAddress = nullptr; in HandlePropertySet() local
3060 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
3073 error = otLinkFilterAddAddress(mInstance, extAddress); in HandlePropertySet()
3084 SuccessOrExit(error = otLinkFilterAddRssIn(mInstance, extAddress, rss)); in HandlePropertySet()
3130 const otExtAddress *extAddress = nullptr; in HandlePropertySet() local
3133 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
3136 SuccessOrExit(error = otLinkFilterAddAddress(mInstance, extAddress)); in HandlePropertySet()
3181 const otExtAddress *extAddress; in HandlePropertySet() local
3188 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
3192 extAddress = nullptr; in HandlePropertySet()
[all …]
Dncp_base.cpp1639 const otExtAddress *extAddress; in HandlePropertySet() local
1642 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
1644 error = otLinkSetExtendedAddress(mInstance, extAddress); in HandlePropertySet()
/openthread-latest/tests/nexus/platform/
Dnexus_radio.cpp172 Mac::ExtAddress extAddress; in otPlatRadioAddSrcMatchExtEntry() local
174 extAddress.Set(aExtAddress->m8, Mac::ExtAddress::kReverseByteOrder); in otPlatRadioAddSrcMatchExtEntry()
176 VerifyOrExit(!radio.mSrcMatchExtEntries.Contains(extAddress)); in otPlatRadioAddSrcMatchExtEntry()
177 error = radio.mSrcMatchExtEntries.PushBack(extAddress); in otPlatRadioAddSrcMatchExtEntry()
202 Mac::ExtAddress extAddress; in otPlatRadioClearSrcMatchExtEntry() local
205 extAddress.Set(aExtAddress->m8, Mac::ExtAddress::kReverseByteOrder); in otPlatRadioClearSrcMatchExtEntry()
207 entry = radio.mSrcMatchExtEntries.Find(extAddress); in otPlatRadioClearSrcMatchExtEntry()
/openthread-latest/src/core/radio/
Dtrel_interface.cpp189 Mac::ExtAddress extAddress; in HandleDiscoveredPeerInfo() local
195 SuccessOrExit(ParsePeerInfoTxtData(aInfo, extAddress, extPanId)); in HandleDiscoveredPeerInfo()
197 VerifyOrExit(extAddress != Get<Mac::Mac>().GetExtAddress()); in HandleDiscoveredPeerInfo()
201 entry = FindPeer(extAddress); in HandleDiscoveredPeerInfo()
215 if ((entry != nullptr) && !entry->Matches(extAddress)) in HandleDiscoveredPeerInfo()
223 entry = mPeerTable.FindMatching(extAddress); in HandleDiscoveredPeerInfo()
231 entry->SetExtAddress(extAddress); in HandleDiscoveredPeerInfo()
/openthread-latest/src/core/thread/
Ddiscover_scanner.cpp79 Mac::ExtAddress extAddress; in Discover() local
81 Get<Radio>().GetIeeeEui64(extAddress); in Discover()
82 MeshCoP::ComputeJoinerId(extAddress, extAddress); in Discover()
83 MeshCoP::SteeringData::CalculateHashBitIndexes(extAddress, mFilterIndexes); in Discover()
Dmle_router.cpp3517 Mac::ExtAddress extAddress; in HandleTmf() local
3527 SuccessOrExit(error = Tlv::Find<ThreadExtMacAddressTlv>(aMessage, extAddress)); in HandleTmf()
3550 router = mRouterTable.FindRouter(extAddress); in HandleTmf()
3573 … LogInfo("Rejecting BR %s router role req - have %u BR routers", extAddress.ToString().AsCString(), in HandleTmf()
3600 router->SetExtAddress(extAddress); in HandleTmf()
3665 Mac::ExtAddress extAddress; in HandleTmf() local
3676 SuccessOrExit(Tlv::Find<ThreadExtMacAddressTlv>(aMessage, extAddress)); in HandleTmf()
3681 VerifyOrExit((router != nullptr) && (router->GetExtAddress() == extAddress)); in HandleTmf()
Dmle.cpp2284 Mac::ExtAddress extAddress; in ProcessMessageSecurity() local
2307 senderAddress->GetIid().ConvertToExtAddress(extAddress); in ProcessMessageSecurity()
2308 …Crypto::AesCcm::GenerateNonce(extAddress, aHeader.GetFrameCounter(), Mac::Frame::kSecurityEncMic32… in ProcessMessageSecurity()
3067 Mac::ExtAddress extAddress; in HandleParentResponse() local
3081 aRxInfo.mMessageInfo.GetPeerAddr().GetIid().ConvertToExtAddress(extAddress); in HandleParentResponse()
3083 if (IsChild() && mParent.GetExtAddress() == extAddress) in HandleParentResponse()
3116 parentinfo.mExtAddr = extAddress; in HandleParentResponse()
3170 … if (mParentCandidate.IsStateParentResponse() && (mParentCandidate.GetExtAddress() != extAddress)) in HandleParentResponse()
/openthread-latest/src/core/utils/
Dlink_metrics_manager.cpp213 Mac::ExtAddress extAddress; in HandleMgmtResponse() local
217 AsCoreType(aAddress).GetIid().ConvertToExtAddress(extAddress); in HandleMgmtResponse()
218 neighbor = Get<NeighborTable>().FindNeighbor(extAddress); in HandleMgmtResponse()
221 subject = mSubjectList.FindMatching(extAddress); in HandleMgmtResponse()
/openthread-latest/src/core/mac/
Dmac.cpp875 const ExtAddress *extAddress = nullptr; in ProcessTransmitSecurity() local
885 extAddress = &GetExtAddress(); in ProcessTransmitSecurity()
909 extAddress = &GetExtAddress(); in ProcessTransmitSecurity()
944 extAddress = &AsCoreType(&sMode2ExtAddress); in ProcessTransmitSecurity()
962 aFrame.ProcessTransmitAesCcm(*extAddress); in ProcessTransmitSecurity()
1577 const ExtAddress *extAddress; in ProcessReceiveSecurity() local
1593 extAddress = &aSrcAddr.GetExtended(); in ProcessReceiveSecurity()
1648 extAddress = &aSrcAddr.GetExtended(); in ProcessReceiveSecurity()
1666 extAddress = &aSrcAddr.GetExtended(); in ProcessReceiveSecurity()
1672 extAddress = &AsCoreType(&sMode2ExtAddress); in ProcessReceiveSecurity()
[all …]
Dsub_mac.cpp362 const ExtAddress *extAddress = nullptr; in ProcessTransmitSecurity() local
398 extAddress = &GetExtAddress(); in ProcessTransmitSecurity()
405 mTransmitFrame.ProcessTransmitAesCcm(*extAddress); in ProcessTransmitSecurity()
/openthread-latest/src/posix/platform/
Drcp_caps_diag.cpp225 static constexpr otExtAddress extAddress = {{0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88}}; in HandleSpinelCommand() local
227 …pinel.Remove(SPINEL_PROP_MAC_SRC_MATCH_EXTENDED_ADDRESSES, SPINEL_DATATYPE_EUI64_S, extAddress.m8); in HandleSpinelCommand()
665 otExtAddress extAddress = {0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88}; in OutputExtendedSrcMatchTableSize() local
673 *reinterpret_cast<uint16_t *>(extAddress.m8) = num; in OutputExtendedSrcMatchTableSize()
675 …inel.Insert(SPINEL_PROP_MAC_SRC_MATCH_EXTENDED_ADDRESSES, SPINEL_DATATYPE_EUI64_S, extAddress.m8)); in OutputExtendedSrcMatchTableSize()
/openthread-latest/src/core/meshcop/
Djoiner.cpp571 Mac::ExtAddress extAddress; in HandleTimer() local
573 extAddress.GenerateRandom(); in HandleTimer()
574 Get<Mac::Mac>().SetExtAddress(extAddress); in HandleTimer()
/openthread-latest/src/cli/
Dcli.cpp2894 otExtAddress extAddress; in Process() local
2898 otLinkGetFactoryAssignedIeeeEui64(GetInstancePtr(), &extAddress); in Process()
2899 OutputExtAddressLine(extAddress); in Process()
2936 otExtAddress extAddress; in Process() local
2938 SuccessOrExit(error = aArgs[0].ParseAsHexString(extAddress.m8)); in Process()
2939 error = otLinkSetExtendedAddress(GetInstancePtr(), &extAddress); in Process()
4365 otExtAddress extAddress; in Process() local
4367 SuccessOrExit(error = aArgs[1].ParseAsHexString(extAddress.m8)); in Process()
4368 …SuccessOrExit(error = otMultiRadioGetNeighborInfo(GetInstancePtr(), &extAddress, &multiRadioInfo)); in Process()
7979 otExtAddress extAddress; in Process() local
[all …]
/openthread-latest/src/core/diags/
Dfactory_diags.cpp679 Mac::ExtAddress extAddress;
681 … SuccessOrExit(error = Utils::CmdLineParser::ParseAsHexString(aArgs[0], extAddress.m8));
682 mReceiveConfig.mFilterAddress.SetExtended(extAddress);