Home
last modified time | relevance | path

Searched refs:aShortAddress (Results 1 – 25 of 36) sorted by relevance

12

/external/openthread/examples/platforms/utils/
Dlink_metrics.cpp66 …void Set(otLinkMetrics aLinkMetrics, otShortAddress aShortAddress, const otExtAddress &aExtAddress) in Set() argument
69 mShortAddress = aShortAddress; in Set()
139 …bool Matches(const otShortAddress &aShortAddress) const { return mShortAddress == aShortAddress; }; in Matches()
185 otError otLinkMetricsConfigureEnhAckProbing(otShortAddress aShortAddress, in otLinkMetricsConfigureEnhAckProbing() argument
196 dataInfo = GetLinkMetricsDataInfoActiveList().RemoveMatching(aShortAddress); in otLinkMetricsConfigureEnhAckProbing()
202 dataInfo = GetLinkMetricsDataInfoActiveList().FindMatching(aShortAddress); in otLinkMetricsConfigureEnhAckProbing()
213 dataInfo->Set(aLinkMetrics, aShortAddress, *aExtAddress); in otLinkMetricsConfigureEnhAckProbing()
Dsoft_source_match_table.c64 int16_t utilsSoftSrcMatchShortFindEntry(uint16_t aShortAddress) in utilsSoftSrcMatchShortFindEntry() argument
67 uint16_t checksum = aShortAddress + sPanId; in utilsSoftSrcMatchShortFindEntry()
97 static inline void addToSrcMatchShortIndirect(uint16_t entry, uint16_t aShortAddress) in addToSrcMatchShortIndirect() argument
99 uint16_t checksum = aShortAddress + sPanId; in addToSrcMatchShortIndirect()
111 otError otPlatRadioAddSrcMatchShortEntry(otInstance *aInstance, uint16_t aShortAddress) in otPlatRadioAddSrcMatchShortEntry() argument
123 addToSrcMatchShortIndirect((uint16_t)entry, aShortAddress); in otPlatRadioAddSrcMatchShortEntry()
129 otError otPlatRadioClearSrcMatchShortEntry(otInstance *aInstance, uint16_t aShortAddress) in otPlatRadioClearSrcMatchShortEntry() argument
136 entry = utilsSoftSrcMatchShortFindEntry(aShortAddress); in otPlatRadioClearSrcMatchShortEntry()
Dsoft_source_match_table.h61 int16_t utilsSoftSrcMatchShortFindEntry(uint16_t aShortAddress);
Dlink_metrics.h77 otError otLinkMetricsConfigureEnhAckProbing(otShortAddress aShortAddress,
Dmac_frame.cpp38 otShortAddress aShortAddress, in otMacFrameDoesAddrMatch() argument
51 …VerifyOrExit(dst.GetShort() == Mac::kShortAddrBroadcast || dst.GetShort() == aShortAddress, rval =… in otMacFrameDoesAddrMatch()
Dmac_frame.h141 otShortAddress aShortAddress,
/external/openthread/src/core/radio/
Dradio.hpp277 void SetShortAddress(Mac::ShortAddress aShortAddress);
559 Error AddSrcMatchShortEntry(Mac::ShortAddress aShortAddress);
581 Error ClearSrcMatchShortEntry(Mac::ShortAddress aShortAddress);
644 const Mac::ShortAddress &aShortAddress, in ConfigureEnhAckProbing() argument
647 …return otPlatRadioConfigureEnhAckProbing(GetInstancePtr(), aLinkMetrics, aShortAddress, &aExtAddre… in ConfigureEnhAckProbing()
842 inline Error Radio::AddSrcMatchShortEntry(Mac::ShortAddress aShortAddress) in AddSrcMatchShortEntry() argument
844 return otPlatRadioAddSrcMatchShortEntry(GetInstancePtr(), aShortAddress); in AddSrcMatchShortEntry()
852 inline Error Radio::ClearSrcMatchShortEntry(Mac::ShortAddress aShortAddress) in ClearSrcMatchShortEntry() argument
854 return otPlatRadioClearSrcMatchShortEntry(GetInstancePtr(), aShortAddress); in ClearSrcMatchShortEntry()
Dradio.cpp76 void Radio::SetShortAddress(Mac::ShortAddress aShortAddress) in SetShortAddress() argument
78 otPlatRadioSetShortAddress(GetInstancePtr(), aShortAddress); in SetShortAddress()
81 Get<Utils::Otns>().EmitShortAddress(aShortAddress); in SetShortAddress()
/external/openthread/src/core/thread/
Dneighbor_table.cpp66 Neighbor *NeighborTable::FindParent(Mac::ShortAddress aShortAddress, Neighbor::StateFilter aFilter) in FindParent() argument
68 return FindParent(Neighbor::AddressMatcher(aShortAddress, aFilter)); in FindParent()
100 Neighbor *NeighborTable::FindNeighbor(Mac::ShortAddress aShortAddress, Neighbor::StateFilter aFilte… in FindNeighbor() argument
104 …VerifyOrExit((aShortAddress != Mac::kShortAddrBroadcast) && (aShortAddress != Mac::kShortAddrInval… in FindNeighbor()
105 neighbor = FindNeighbor(Neighbor::AddressMatcher(aShortAddress, aFilter)); in FindNeighbor()
Dneighbor_table.hpp101 Neighbor *FindParent(Mac::ShortAddress aShortAddress,
139 Neighbor *FindNeighbor(Mac::ShortAddress aShortAddress,
Dtopology.hpp129 AddressMatcher(Mac::ShortAddress aShortAddress, StateFilter aStateFilter) in AddressMatcher() argument
130 : AddressMatcher(aStateFilter, aShortAddress, nullptr) in AddressMatcher()
184 …AddressMatcher(StateFilter aStateFilter, Mac::ShortAddress aShortAddress, const Mac::ExtAddress *a… in AddressMatcher() argument
186 , mShortAddress(aShortAddress) in AddressMatcher()
/external/openthread/src/core/api/
Dlink_raw_api.cpp62 otError otLinkRawSetShortAddress(otInstance *aInstance, uint16_t aShortAddress) in otLinkRawSetShortAddress() argument
64 return AsCoreType(aInstance).Get<Mac::LinkRaw>().SetShortAddress(aShortAddress); in otLinkRawSetShortAddress()
143 otError otLinkRawSrcMatchAddShortEntry(otInstance *aInstance, uint16_t aShortAddress) in otLinkRawSrcMatchAddShortEntry() argument
150 error = instance.Get<Radio>().AddSrcMatchShortEntry(aShortAddress); in otLinkRawSrcMatchAddShortEntry()
171 otError otLinkRawSrcMatchClearShortEntry(otInstance *aInstance, uint16_t aShortAddress) in otLinkRawSrcMatchClearShortEntry() argument
177 error = instance.Get<Radio>().ClearSrcMatchShortEntry(aShortAddress); in otLinkRawSrcMatchClearShortEntry()
/external/openthread/include/openthread/
Dlink_raw.h123 otError otLinkRawSetShortAddress(otInstance *aInstance, uint16_t aShortAddress);
272 otError otLinkRawSrcMatchAddShortEntry(otInstance *aInstance, uint16_t aShortAddress);
298 otError otLinkRawSrcMatchClearShortEntry(otInstance *aInstance, uint16_t aShortAddress);
Dlink_metrics.h142 typedef void (*otLinkMetricsEnhAckProbingIeReportCallback)(otShortAddress aShortAddress,
/external/openthread/tests/fuzz/
Dfuzzer_platform.cpp260 void otPlatRadioSetShortAddress(otInstance *aInstance, uint16_t aShortAddress) in otPlatRadioSetShortAddress() argument
263 OT_UNUSED_VARIABLE(aShortAddress); in otPlatRadioSetShortAddress()
361 otError otPlatRadioAddSrcMatchShortEntry(otInstance *aInstance, uint16_t aShortAddress) in otPlatRadioAddSrcMatchShortEntry() argument
364 OT_UNUSED_VARIABLE(aShortAddress); in otPlatRadioAddSrcMatchShortEntry()
375 otError otPlatRadioClearSrcMatchShortEntry(otInstance *aInstance, uint16_t aShortAddress) in otPlatRadioClearSrcMatchShortEntry() argument
378 OT_UNUSED_VARIABLE(aShortAddress); in otPlatRadioClearSrcMatchShortEntry()
/external/openthread/include/openthread/platform/
Dradio.h479 void otPlatRadioSetShortAddress(otInstance *aInstance, otShortAddress aShortAddress);
907 otError otPlatRadioAddSrcMatchShortEntry(otInstance *aInstance, otShortAddress aShortAddress);
931 otError otPlatRadioClearSrcMatchShortEntry(otInstance *aInstance, otShortAddress aShortAddress);
1141 otShortAddress aShortAddress,
/external/openthread/src/core/mac/
Dmac_links.hpp342 void SetShortAddress(ShortAddress aShortAddress) in SetShortAddress() argument
345 mSubMac.SetShortAddress(aShortAddress); in SetShortAddress()
347 mShortAddress = aShortAddress; in SetShortAddress()
Dlink_raw.cpp159 Error LinkRaw::SetShortAddress(ShortAddress aShortAddress) in SetShortAddress() argument
164 mSubMac.SetShortAddress(aShortAddress); in SetShortAddress()
Dmac_types.hpp344 void SetShort(ShortAddress aShortAddress) in SetShort() argument
346 mShared.mShortAddress = aShortAddress; in SetShort()
Dmac.hpp266 void SetShortAddress(ShortAddress aShortAddress) { mLinks.SetShortAddress(aShortAddress); } in SetShortAddress() argument
/external/openthread/src/posix/platform/
Dradio.cpp364 otError otPlatRadioAddSrcMatchShortEntry(otInstance *aInstance, uint16_t aShortAddress) in otPlatRadioAddSrcMatchShortEntry() argument
367 return sRadioSpinel.AddSrcMatchShortEntry(aShortAddress); in otPlatRadioAddSrcMatchShortEntry()
383 otError otPlatRadioClearSrcMatchShortEntry(otInstance *aInstance, uint16_t aShortAddress) in otPlatRadioClearSrcMatchShortEntry() argument
386 return sRadioSpinel.ClearSrcMatchShortEntry(aShortAddress); in otPlatRadioClearSrcMatchShortEntry()
651 const otShortAddress aShortAddress, in otPlatRadioConfigureEnhAckProbing() argument
656 return sRadioSpinel.ConfigureEnhAckProbing(aLinkMetrics, aShortAddress, *aExtAddress); in otPlatRadioConfigureEnhAckProbing()
/external/openthread/examples/platforms/cc2538/
Dradio.c896 int8_t findSrcMatchShortEntry(uint16_t aShortAddress) in findSrcMatchShortEntry() argument
918 if ((shortAddr == aShortAddress)) in findSrcMatchShortEntry()
1074 otError otPlatRadioAddSrcMatchShortEntry(otInstance *aInstance, uint16_t aShortAddress) in otPlatRadioAddSrcMatchShortEntry() argument
1090 HWREG(addr++) = aShortAddress & 0xFF; in otPlatRadioAddSrcMatchShortEntry()
1091 HWREG(addr++) = aShortAddress >> 8; in otPlatRadioAddSrcMatchShortEntry()
1124 otError otPlatRadioClearSrcMatchShortEntry(otInstance *aInstance, uint16_t aShortAddress) in otPlatRadioClearSrcMatchShortEntry() argument
1129 int8_t entry = findSrcMatchShortEntry(aShortAddress); in otPlatRadioClearSrcMatchShortEntry()
/external/openthread/src/lib/spinel/
Dradio_spinel.hpp393 otError AddSrcMatchShortEntry(uint16_t aShortAddress);
406 otError ClearSrcMatchShortEntry(uint16_t aShortAddress);
701 const otShortAddress aShortAddress,
/external/openthread/src/core/utils/
Dotns.cpp50 void Otns::EmitShortAddress(uint16_t aShortAddress) in EmitShortAddress() argument
52 EmitStatus("rloc16=%d", aShortAddress); in EmitShortAddress()
Dotns.hpp84 static void EmitShortAddress(uint16_t aShortAddress);

12