Lines Matching refs:aOffset
533 void SetOffset(uint16_t aOffset);
699 void RemoveHeader(uint16_t aOffset, uint16_t aLength);
715 Error InsertHeader(uint16_t aOffset, uint16_t aLength);
753 Error AppendBytesFromMessage(const Message &aMessage, uint16_t aOffset, uint16_t aLength);
818 uint16_t ReadBytes(uint16_t aOffset, void *aBuf, uint16_t aLength) const;
844 Error Read(uint16_t aOffset, void *aBuf, uint16_t aLength) const;
869 template <typename ObjectType> Error Read(uint16_t aOffset, ObjectType &aObject) const in Read() argument
873 return Read(aOffset, &aObject, sizeof(ObjectType)); in Read()
909 …bool CompareBytes(uint16_t aOffset, const void *aBuf, uint16_t aLength, ByteMatcher aMatcher = nul…
926 bool CompareBytes(uint16_t aOffset,
946 template <typename ObjectType> bool Compare(uint16_t aOffset, const ObjectType &aObject) const in Compare() argument
950 return CompareBytes(aOffset, &aObject, sizeof(ObjectType)); in Compare()
963 void WriteBytes(uint16_t aOffset, const void *aBuf, uint16_t aLength);
992 template <typename ObjectType> void Write(uint16_t aOffset, const ObjectType &aObject) in Write() argument
996 WriteBytes(aOffset, &aObject, sizeof(ObjectType)); in Write()
1010 …template <DataLengthType kDataLengthType> void WriteData(uint16_t aOffset, const Data<kDataLengthT… in WriteData() argument
1012 WriteBytes(aOffset, aData.GetBytes(), aData.GetLength()); in WriteData()
1532 void GetFirstChunk(uint16_t aOffset, uint16_t &aLength, Chunk &aChunk) const;
1535 void GetFirstChunk(uint16_t aOffset, uint16_t &aLength, MutableChunk &aChunk) in GetFirstChunk() argument
1537 AsConst(this)->GetFirstChunk(aOffset, aLength, static_cast<Chunk &>(aChunk)); in GetFirstChunk()