Home
last modified time | relevance | path

Searched refs:ShortAddress (Results 1 – 17 of 17) sorted by relevance

/openthread-3.7.0/src/core/thread/
Daddress_resolver.hpp142 void RemoveEntriesForRloc16(Mac::ShortAddress aRloc16);
180 …d UpdateSnoopedCacheEntry(const Ip6::Address &aEid, Mac::ShortAddress aRloc16, Mac::ShortAddress a…
194 Error Resolve(const Ip6::Address &aEid, Mac::ShortAddress &aRloc16) in Resolve()
210 Mac::ShortAddress LookUp(const Ip6::Address &aEid);
270 Mac::ShortAddress GetRloc16(void) const { return mRloc16; } in GetRloc16()
271 void SetRloc16(Mac::ShortAddress aRloc16) { mRloc16 = aRloc16; } in SetRloc16()
302 Mac::ShortAddress mRloc16;
351 …Error Resolve(const Ip6::Address &aEid, Mac::ShortAddress &aRloc16, bool aAllowAddressQuery);
352 void Remove(Mac::ShortAddress aRloc16, bool aMatchRouterId);
357 Error UpdateCacheEntry(const Ip6::Address &aEid, Mac::ShortAddress aRloc16);
[all …]
Dneighbor.hpp131 AddressMatcher(Mac::ShortAddress aShortAddress, StateFilter aStateFilter) in AddressMatcher()
158 … : static_cast<Mac::ShortAddress>(Mac::kShortAddrInvalid), in AddressMatcher()
186 …AddressMatcher(StateFilter aStateFilter, Mac::ShortAddress aShortAddress, const Mac::ExtAddress *a… in AddressMatcher()
194 Mac::ShortAddress mShortAddress;
Dneighbor_table.hpp101 Neighbor *FindParent(Mac::ShortAddress aShortAddress,
139 Neighbor *FindNeighbor(Mac::ShortAddress aShortAddress,
Daddress_resolver.cpp179 void AddressResolver::Remove(Mac::ShortAddress aRloc16, bool aMatchRouterId) in Remove()
340 Error AddressResolver::UpdateCacheEntry(const Ip6::Address &aEid, Mac::ShortAddress aRloc16) in UpdateCacheEntry()
381 Mac::ShortAddress aRloc16, in UpdateSnoopedCacheEntry()
382 Mac::ShortAddress aDest) in UpdateSnoopedCacheEntry()
386 Mac::ShortAddress macAddress; in UpdateSnoopedCacheEntry()
473 Mac::ShortAddress AddressResolver::LookUp(const Ip6::Address &aEid) in LookUp()
475 Mac::ShortAddress rloc16 = Mac::kShortAddrInvalid; in LookUp()
481 Error AddressResolver::Resolve(const Ip6::Address &aEid, Mac::ShortAddress &aRloc16, bool aAllowAdd… in Resolve()
583 Error AddressResolver::ResolveUsingNetDataServices(const Ip6::Address &aEid, Mac::ShortAddress &aRl… in ResolveUsingNetDataServices()
Dneighbor_table.cpp66 Neighbor *NeighborTable::FindParent(Mac::ShortAddress aShortAddress, Neighbor::StateFilter aFilter) in FindParent()
100 Neighbor *NeighborTable::FindNeighbor(Mac::ShortAddress aShortAddress, Neighbor::StateFilter aFilte… in FindNeighbor()
/openthread-3.7.0/src/core/mac/
Dmac_types.hpp74 typedef otShortAddress ShortAddress; typedef
76 constexpr ShortAddress kShortAddrBroadcast = 0xffff; ///< Broadcast Short Address.
77 constexpr ShortAddress kShortAddrInvalid = 0xfffe; ///< Invalid Short Address.
306 ShortAddress GetShort(void) const { return mShared.mShortAddress; } in GetShort()
344 void SetShort(ShortAddress aShortAddress) in SetShort()
407 ShortAddress mShortAddress; ///< The IEEE 802.15.4 Short Address.
Dlink_raw.hpp188 ShortAddress GetShortAddress(void) const { return mSubMac.GetShortAddress(); } in GetShortAddress()
199 Error SetShortAddress(ShortAddress aShortAddress);
Dmac_links.hpp328 ShortAddress GetShortAddress(void) const in GetShortAddress()
344 void SetShortAddress(ShortAddress aShortAddress) in SetShortAddress()
700 ShortAddress mShortAddress;
Dsub_mac.hpp241 ShortAddress GetShortAddress(void) const { return mShortAddress; } in GetShortAddress()
249 void SetShortAddress(ShortAddress aShortAddress);
645 ShortAddress mShortAddress;
Dmac.hpp262 ShortAddress GetShortAddress(void) const { return mLinks.GetShortAddress(); } in GetShortAddress()
270 void SetShortAddress(ShortAddress aShortAddress) { mLinks.SetShortAddress(aShortAddress); } in SetShortAddress()
Dmac_frame.cpp404 void Frame::SetDstAddr(ShortAddress aShortAddress) in SetDstAddr()
455 index += sizeof(ShortAddress); in FindSrcPanIdIndex()
546 index += sizeof(ShortAddress); in FindSrcAddrIndex()
594 void Frame::SetSrcAddr(ShortAddress aShortAddress) in SetSrcAddr()
974 size += sizeof(ShortAddress); in CalculateAddrFieldSize()
996 size += sizeof(ShortAddress); in CalculateAddrFieldSize()
Dlink_raw.cpp159 Error LinkRaw::SetShortAddress(ShortAddress aShortAddress) in SetShortAddress()
Dmac_frame.hpp577 void SetDstAddr(ShortAddress aShortAddress);
649 void SetSrcAddr(ShortAddress aShortAddress);
Dsub_mac.cpp163 void SubMac::SetShortAddress(ShortAddress aShortAddress) in SetShortAddress()
/openthread-3.7.0/src/core/radio/
Dradio.hpp336 void SetShortAddress(Mac::ShortAddress aShortAddress);
649 Error AddSrcMatchShortEntry(Mac::ShortAddress aShortAddress);
671 Error ClearSrcMatchShortEntry(Mac::ShortAddress aShortAddress);
736 const Mac::ShortAddress &aShortAddress, in ConfigureEnhAckProbing()
999 inline Error Radio::AddSrcMatchShortEntry(Mac::ShortAddress aShortAddress) in AddSrcMatchShortEntry()
1009 inline Error Radio::ClearSrcMatchShortEntry(Mac::ShortAddress aShortAddress) in ClearSrcMatchShortEntry()
1036 inline void Radio::SetShortAddress(Mac::ShortAddress) {} in SetShortAddress() argument
1104 inline Error Radio::AddSrcMatchShortEntry(Mac::ShortAddress) { return kErrorNone; } in AddSrcMatchShortEntry() argument
1108 inline Error Radio::ClearSrcMatchShortEntry(Mac::ShortAddress) { return kErrorNone; } in ClearSrcMatchShortEntry() argument
Dradio.cpp92 void Radio::SetShortAddress(Mac::ShortAddress aShortAddress) in SetShortAddress()
/openthread-3.7.0/tests/unit/
Dtest_mac_frame.cpp83 const Mac::ShortAddress kShortAddr = 0x1234; in TestMacAddress()