Home
last modified time | relevance | path

Searched refs:MatchesBytesIn (Results 1 – 5 of 5) sorted by relevance

/openthread-3.6.0/src/core/common/
Ddata.hpp207 … bool MatchesBytesIn(const void *aBuffer) const { return memcmp(mBuffer, aBuffer, mLength) == 0; } in MatchesBytesIn() function in ot::Data
221 bool MatchesBytesIn(const void *aBuffer, ByteMatcher aMatcher) in MatchesBytesIn() function in ot::Data
237 return (mLength == aOtherData.mLength) && MatchesBytesIn(aOtherData.mBuffer); in operator ==()
254 return (mLength >= aOtherData.mLength) && aOtherData.MatchesBytesIn(mBuffer); in StartsWith()
Dheap_data.cpp93 matches = mData.MatchesBytesIn(aBuffer); in Matches()
Dmessage.cpp665 VerifyOrExit(chunk.MatchesBytesIn(bufPtr, aMatcher)); in CompareBytes()
/openthread-3.6.0/tests/unit/
Dtest_data.cpp69 VerifyOrQuit(data.MatchesBytesIn(buffer)); in TestData()
81 VerifyOrQuit(data2.MatchesBytesIn(kDataCopy)); in TestData()
/openthread-3.6.0/src/core/meshcop/
Dnetwork_name.cpp94 if (data.MatchesBytesIn(m8) && m8[newLen] == '\0') in Set()