Home
last modified time | relevance | path

Searched refs:mIphcHeader (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/tests/unit/
Dtest_lowpan.hpp190 memcpy(mIphcHeader.mData, aIphc, aIphcLength); in SetIphcHeader()
191 mIphcHeader.mLength = aIphcLength; in SetIphcHeader()
255 Payload mIphcHeader; member in ot::TestIphcVector
Dtest_lowpan.cpp42 memcpy(aIphc, mIphcHeader.mData, mIphcHeader.mLength); in GetCompressedStream()
43 memcpy(aIphc + mIphcHeader.mLength, mPayload.mData, mPayload.mLength); in GetCompressedStream()
45 aIphcLength = mIphcHeader.mLength + mPayload.mLength; in GetCompressedStream()
167 printf("LOWPAN_IPHC length ---------- %d\n", aVector.mIphcHeader.mLength); in Test()
198 VerifyOrQuit(compressBytes == aVector.mIphcHeader.mLength, "Lowpan::Compress failed"); in Test()
245 …VerifyOrQuit((frameData.GetBytes() - iphc) == aVector.mIphcHeader.mLength, "Lowpan::Decompress fai… in Test()