Home
last modified time | relevance | path

Searched defs:aOffset (Results 1 – 25 of 54) sorted by relevance

123

/external/openthread/src/core/net/
Ddns_types.cpp280 Error Name::AppendPointerLabel(uint16_t aOffset, Message &aMessage) in AppendPointerLabel()
327 Error Name::ParseName(const Message &aMessage, uint16_t &aOffset) in ParseName()
357 Error Name::ReadLabel(const Message &aMessage, uint16_t &aOffset, char *aLabelBuffer, uint8_t &aLab… in ReadLabel()
370 Error Name::ReadName(const Message &aMessage, uint16_t &aOffset, char *aNameBuffer, uint16_t aNameB… in ReadName()
422 Error Name::CompareLabel(const Message &aMessage, uint16_t &aOffset, const char *aLabel) in CompareLabel()
435 Error Name::CompareMultipleLabels(const Message &aMessage, uint16_t &aOffset, const char *aLabels) in CompareMultipleLabels()
456 Error Name::CompareName(const Message &aMessage, uint16_t &aOffset, const char *aName) in CompareName()
508 Error Name::CompareName(const Message &aMessage, uint16_t &aOffset, const Message &aMessage2, uint1… in CompareName()
555 Error Name::CompareName(const Message &aMessage, uint16_t &aOffset, const Name &aName) in CompareName()
801 Error ResourceRecord::ParseRecords(const Message &aMessage, uint16_t &aOffset, uint16_t aNumRecords) in ParseRecords()
[all …]
Ddhcp6_client.cpp453 uint16_t Client::FindOption(Message &aMessage, uint16_t aOffset, uint16_t aLength, Dhcp6::Code aCod… in FindOption()
477 Error Client::ProcessServerIdentifier(Message &aMessage, uint16_t aOffset) in ProcessServerIdentifier()
493 Error Client::ProcessClientIdentifier(Message &aMessage, uint16_t aOffset) in ProcessClientIdentifier()
510 Error Client::ProcessIaNa(Message &aMessage, uint16_t aOffset) in ProcessIaNa()
546 Error Client::ProcessStatusCode(Message &aMessage, uint16_t aOffset) in ProcessStatusCode()
559 Error Client::ProcessIaAddress(Message &aMessage, uint16_t aOffset) in ProcessIaAddress()
Ddhcp6_server.cpp234 uint16_t Server::FindOption(Message &aMessage, uint16_t aOffset, uint16_t aLength, Code aCode) in FindOption()
256 Error Server::ProcessClientIdentifier(Message &aMessage, uint16_t aOffset, ClientIdentifier &aClien… in ProcessClientIdentifier()
269 Error Server::ProcessElapsedTime(Message &aMessage, uint16_t aOffset) in ProcessElapsedTime()
280 Error Server::ProcessIaNa(Message &aMessage, uint16_t aOffset, IaNa &aIaNa) in ProcessIaNa()
308 Error Server::ProcessIaAddress(Message &aMessage, uint16_t aOffset) in ProcessIaAddress()
Ddns_types.hpp571 Name(const Message &aMessage, uint16_t aOffset) in Name()
632 void SetFromMessage(const Message &aMessage, uint16_t aOffset) in SetFromMessage()
890 …static Error ReadName(const Message &aMessage, uint16_t &aOffset, char (&aNameBuffer)[kNameBufferS… in ReadName()
1139 Name(const char *aString, const Message *aMessage, uint16_t aOffset) in Name()
1520 uint16_t &aOffset, in FindRecord()
1564 …template <class RecordType> static Error ReadRecord(const Message &aMessage, uint16_t &aOffset, Re… in ReadRecord()
1689 uint16_t &aOffset, in ReadCanonicalName()
1739 …Error ReadPtrName(const Message &aMessage, uint16_t &aOffset, char *aNameBuffer, uint16_t aNameBuf… in ReadPtrName()
1805 uint16_t &aOffset, in ReadPtrName()
2011 uint16_t &aOffset, in ReadTargetHostName()
[all …]
Dip6_headers.cpp72 Error Option::ParseFrom(const Message &aMessage, uint16_t aOffset, uint16_t aEndOffset) in ParseFrom()
Dip6_headers.hpp649 void SetOffset(uint16_t aOffset) in SetOffset()
709 …static inline uint16_t FragmentOffsetToBytes(uint16_t aOffset) { return static_cast<uint16_t>(aOff… in FragmentOffsetToBytes()
718 static inline uint16_t BytesToFragmentOffset(uint16_t aOffset) { return aOffset >> 3; } in BytesToFragmentOffset()
/external/openthread/src/core/common/
Dframe_builder.cpp108 Error FrameBuilder::AppendBytesFromMessage(const Message &aMessage, uint16_t aOffset, uint16_t aLen… in AppendBytesFromMessage()
121 void FrameBuilder::WriteBytes(uint16_t aOffset, const void *aBuffer, uint16_t aLength) in WriteBytes()
126 Error FrameBuilder::InsertBytes(uint16_t aOffset, const void *aBuffer, uint16_t aLength) in InsertBytes()
142 void FrameBuilder::RemoveBytes(uint16_t aOffset, uint16_t aLength) in RemoveBytes()
Dmessage.cpp325 void Message::SetOffset(uint16_t aOffset) in SetOffset()
415 Error Message::AppendBytesFromMessage(const Message &aMessage, uint16_t aOffset, uint16_t aLength) in AppendBytesFromMessage()
489 void Message::RemoveHeader(uint16_t aOffset, uint16_t aLength) in RemoveHeader()
517 Error Message::InsertHeader(uint16_t aOffset, uint16_t aLength) in InsertHeader()
550 void Message::GetFirstChunk(uint16_t aOffset, uint16_t &aLength, Chunk &aChunk) const in GetFirstChunk()
633 uint16_t Message::ReadBytes(uint16_t aOffset, void *aBuf, uint16_t aLength) const in ReadBytes()
650 Error Message::Read(uint16_t aOffset, void *aBuf, uint16_t aLength) const in Read()
655 bool Message::CompareBytes(uint16_t aOffset, const void *aBuf, uint16_t aLength, ByteMatcher aMatch… in CompareBytes()
675 bool Message::CompareBytes(uint16_t aOffset, in CompareBytes()
698 void Message::WriteBytes(uint16_t aOffset, const void *aBuf, uint16_t aLength) in WriteBytes()
Dtlvs.cpp66 …v::FindTlv(const Message &aMessage, uint8_t aType, uint16_t aMaxSize, Tlv &aTlv, uint16_t &aOffset) in FindTlv()
115 Error Tlv::ParsedInfo::ParseFrom(const Message &aMessage, uint16_t aOffset) in ParseFrom()
197 Error Tlv::ReadStringTlv(const Message &aMessage, uint16_t aOffset, uint8_t aMaxStringLength, char … in ReadStringTlv()
214 template <typename UintType> Error Tlv::ReadUintTlv(const Message &aMessage, uint16_t aOffset, Uint… in ReadUintTlv()
230 Error Tlv::ReadTlvValue(const Message &aMessage, uint16_t aOffset, void *aValue, uint8_t aMinLength) in ReadTlvValue()
Dframe_builder.hpp256 template <typename ObjectType> void Write(uint16_t aOffset, const ObjectType &aObject) in Write()
294 template <typename ObjectType> Error Insert(uint16_t aOffset, const ObjectType &aObject) in Insert()
Dtlvs.hpp277 …static Error Read(const Message &aMessage, uint16_t aOffset, typename SimpleTlvType::ValueType &aV… in Read()
296 …static Error Read(const Message &aMessage, uint16_t aOffset, typename UintTlvType::UintValueType &… in Read()
315 …static Error Read(const Message &aMessage, uint16_t aOffset, typename StringTlvType::StringType &a… in Read()
387 … <typename TlvType> static Error FindTlv(const Message &aMessage, TlvType &aTlv, uint16_t &aOffset) in FindTlv()
Dheap_data.cpp60 Error Data::SetFrom(const Message &aMessage, uint16_t aOffset, uint16_t aLength) in SetFrom()
Dmessage.hpp781 template <typename ObjectType> Error Read(uint16_t aOffset, ObjectType &aObject) const in Read()
843 template <typename ObjectType> bool Compare(uint16_t aOffset, const ObjectType &aObject) const in Compare()
892 template <typename ObjectType> void Write(uint16_t aOffset, const ObjectType &aObject) in Write()
911 …template <DataLengthType kDataLengthType> void WriteData(uint16_t aOffset, const Data<kDataLengthT… in WriteData()
1507 void GetFirstChunk(uint16_t aOffset, uint16_t &aLength, MutableChunk &aChunk) in GetFirstChunk()
/external/openthread/src/core/api/
Dmessage_api.cpp51 void otMessageSetOffset(otMessage *aMessage, uint16_t aOffset) { AsCoreType(aMessage).SetOffset(aOf… in otMessageSetOffset()
105 uint16_t otMessageRead(const otMessage *aMessage, uint16_t aOffset, void *aBuf, uint16_t aLength) in otMessageRead()
112 int otMessageWrite(otMessage *aMessage, uint16_t aOffset, const void *aBuf, uint16_t aLength) in otMessageWrite()
/external/openthread/examples/platforms/simulation/
Dflash.c118 void otPlatFlashRead(otInstance *aInstance, uint8_t aSwapIndex, uint32_t aOffset, void *aData, uint… in otPlatFlashRead()
133 void otPlatFlashWrite(otInstance *aInstance, uint8_t aSwapIndex, uint32_t aOffset, const void *aDat… in otPlatFlashWrite()
/external/openthread/third_party/tcplp/lib/test/
Dtest_all.c15 uint16_t otMessageRead(const otMessage *aMessage, uint16_t aOffset, void *aBuf, uint16_t aLength) { in otMessageRead()
19 int otMessageWrite(otMessage *aMessage, uint16_t aOffset, const void *aBuf, uint16_t aLength) { in otMessageWrite()
/external/openthread/src/core/crypto/
Dsha256.cpp59 void Sha256::Update(const Message &aMessage, uint16_t aOffset, uint16_t aLength) in Update()
Dhmac_sha256.cpp64 void HmacSha256::Update(const Message &aMessage, uint16_t aOffset, uint16_t aLength) in Update()
Daes_ccm.cpp250 void AesCcm::Payload(Message &aMessage, uint16_t aOffset, uint16_t aLength, Mode aMode) in Payload()
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
DUtil.java75 byte[] a, int aOffset, byte[] b, int bOffset, int byteCount) { in arrayRangeEquals()
/external/okhttp/okio/okio/src/main/java/okio/
DUtil.java74 byte[] a, int aOffset, byte[] b, int bOffset, int byteCount) { in arrayRangeEquals()
/external/openthread/src/cli/
Dcli_tcat.cpp87 int32_t aOffset, in HandleBleSecureReceive()
/external/openthread/src/core/thread/
Dmle_types.cpp163 Error RxChallenge::ReadFrom(const Message &aMessage, uint16_t aOffset, uint16_t aLength) in ReadFrom()
Dnetwork_data.hpp548 void SetSubTlvOffset(uint8_t aOffset) { mIteratorBuffer[kSubTlvPosition] = aOffset; } in SetSubTlvOffset()
549 void SetTlvOffset(uint8_t aOffset) { mIteratorBuffer[kTlvPosition] = aOffset; } in SetTlvOffset()
/external/flatbuffers/tests/MyGame/Example/
DArrayTable.java23 …public static void addA(FlatBufferBuilder builder, int aOffset) { builder.addStruct(0, aOffset, 0)… in addA()

123