Home
last modified time | relevance | path

Searched refs:GetBytesSize (Results 1 – 4 of 4) sorted by relevance

/openthread-3.7.0/src/core/net/
Dip6_address.cpp83 …return (mLength == aPrefixLength) && (MatchLength(GetBytes(), aPrefixBytes, GetBytesSize()) >= mLe… in IsEqual()
89 …(MatchLength(GetBytes(), aSubPrefix.GetBytes(), aSubPrefix.GetBytesSize()) >= aSubPrefix.GetLength… in ContainsPrefix()
100 uint8_t byteLength = GetBytesSize(); in Tidy()
116 …return (mLength == aOther.mLength) && (MatchLength(GetBytes(), aOther.GetBytes(), GetBytesSize()) … in operator ==()
218 uint8_t sizeInUint16 = (GetBytesSize() + sizeof(uint16_t) - 1) / sizeof(uint16_t); in ToString()
224 if (GetBytesSize() < Address::kSize - 1) in ToString()
405 …return Prefix::MatchLength(mFields.m8, aPrefix.GetBytes(), aPrefix.GetBytesSize()) >= aPrefix.GetL… in MatchesPrefix()
Dnd6.cpp132 memcpy(GetPrefixBytes(), aPrefix.GetBytes(), aPrefix.GetBytesSize()); in SetPrefix()
Dip6_address.hpp138 uint8_t GetBytesSize(void) const { return SizeForLength(mLength); } in GetBytesSize() function in ot::Ip6::Prefix
/openthread-3.7.0/src/core/thread/
Dnetwork_data_local.cpp105 prefixTlv = As<PrefixTlv>(AppendTlv(sizeof(PrefixTlv) + aPrefix.GetBytesSize() + subTlvLength)); in AddPrefix()