Home
last modified time | relevance | path

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

/openthread-latest/src/core/net/
Dip6_address.cpp72 …return (mLength == aPrefixLength) && (MatchLength(GetBytes(), aPrefixBytes, GetBytesSize()) >= mLe… in IsEqual()
78 …(MatchLength(GetBytes(), aSubPrefix.GetBytes(), aSubPrefix.GetBytesSize()) >= aSubPrefix.GetLength… in ContainsPrefix()
89 uint8_t byteLength = GetBytesSize(); in Tidy()
105 …return (mLength == aOther.mLength) && (MatchLength(GetBytes(), aOther.GetBytes(), GetBytesSize()) … in operator ==()
207 uint8_t sizeInUint16 = DivideAndRoundUp<uint8_t>(GetBytesSize(), sizeof(uint16_t)); in ToString()
213 if (GetBytesSize() < Address::kSize - 1) in ToString()
396 …return Prefix::MatchLength(mFields.m8, aPrefix.GetBytes(), aPrefix.GetBytesSize()) >= aPrefix.GetL… in MatchesPrefix()
Dnd6.cpp131 memcpy(GetPrefixBytes(), aPrefix.GetBytes(), aPrefix.GetBytesSize()); in SetPrefix()
Dip6_address.hpp129 uint8_t GetBytesSize(void) const { return SizeForLength(mLength); } in GetBytesSize() function in ot::Ip6::Prefix
/openthread-latest/src/core/thread/
Dnetwork_data_local.cpp98 prefixTlv = As<PrefixTlv>(AppendTlv(sizeof(PrefixTlv) + aPrefix.GetBytesSize() + subTlvLength)); in AddPrefix()