/openthread-3.5.0/src/core/common/ |
D | encoding.hpp | 128 inline uint16_t ReadUint16(const uint8_t *aBuffer) { return static_cast<uint16_t>((aBuffer[0] << 8)… in ReadUint16() 138 inline uint32_t ReadUint32(const uint8_t *aBuffer) in ReadUint32() 152 inline uint32_t ReadUint24(const uint8_t *aBuffer) in ReadUint24() 166 inline uint64_t ReadUint64(const uint8_t *aBuffer) in ReadUint64() 181 inline void WriteUint16(uint16_t aValue, uint8_t *aBuffer) in WriteUint16() 194 inline void WriteUint24(uint32_t aValue, uint8_t *aBuffer) in WriteUint24() 208 inline void WriteUint32(uint32_t aValue, uint8_t *aBuffer) in WriteUint32() 223 inline void WriteUint64(uint64_t aValue, uint8_t *aBuffer) in WriteUint64() 278 inline uint16_t ReadUint16(const uint8_t *aBuffer) { return static_cast<uint16_t>(aBuffer[0] | (aBu… in ReadUint16() 288 inline uint32_t ReadUint24(const uint8_t *aBuffer) in ReadUint24() [all …]
|
D | frame_builder.cpp | 48 void FrameBuilder::Init(void *aBuffer, uint16_t aLength) in Init() 77 Error FrameBuilder::AppendBytes(const void *aBuffer, uint16_t aLength) in AppendBytes() 127 void FrameBuilder::WriteBytes(uint16_t aOffset, const void *aBuffer, uint16_t aLength) in WriteBytes() 132 Error FrameBuilder::InsertBytes(uint16_t aOffset, const void *aBuffer, uint16_t aLength) in InsertBytes()
|
D | appender.cpp | 45 Appender::Appender(uint8_t *aBuffer, uint16_t aSize) in Appender() 51 Error Appender::AppendBytes(const void *aBuffer, uint16_t aLength) in AppendBytes()
|
D | data.hpp | 127 void Init(const void *aBuffer, LengthType aLength) in Init() 221 bool MatchesBytesIn(const void *aBuffer, ByteMatcher aMatcher) in MatchesBytesIn() 294 void Init(void *aBuffer, LengthType aLength) { Base::Init(aBuffer, aLength); } in Init() 360 Error CopyBytesFrom(const uint8_t *aBuffer, LengthType aLength) in CopyBytesFrom()
|
D | random.hpp | 88 …static Error CryptoFillBuffer(uint8_t *aBuffer, uint16_t aSize) { return otPlatCryptoRandomGet(aBu… in CryptoFillBuffer() 219 inline Error FillBuffer(uint8_t *aBuffer, uint16_t aSize) { return Manager::CryptoFillBuffer(aBuffe… in FillBuffer()
|
D | frame_data.cpp | 87 Error FrameData::ReadBytes(void *aBuffer, uint16_t aLength) in ReadBytes()
|
D | heap_data.cpp | 42 Error Data::SetFrom(const uint8_t *aBuffer, uint16_t aLength) in SetFrom()
|
D | uptime.cpp | 84 void Uptime::GetUptime(char *aBuffer, uint16_t aSize) const in GetUptime()
|
/openthread-3.5.0/src/core/api/ |
D | random_crypto_api.cpp | 42 otError otRandomCryptoFillBuffer(uint8_t *aBuffer, uint16_t aSize) in otRandomCryptoFillBuffer()
|
D | tcp_api.cpp | 76 otError otTcpSendByReference(otTcpEndpoint *aEndpoint, otLinkedBuffer *aBuffer, uint32_t aFlags) in otTcpSendByReference() 86 otError otTcpReceiveByReference(otTcpEndpoint *aEndpoint, const otLinkedBuffer **aBuffer) in otTcpReceiveByReference()
|
D | random_noncrypto_api.cpp | 61 void otRandomNonCryptoFillBuffer(uint8_t *aBuffer, uint16_t aSize) { Random::NonCrypto::FillBuffer(… in otRandomNonCryptoFillBuffer()
|
D | nat64_api.cpp | 162 void otIp4AddressToString(const otIp4Address *aAddress, char *aBuffer, uint16_t aSize) in otIp4AddressToString() 171 void otIp4CidrToString(const otIp4Cidr *aCidr, char *aBuffer, uint16_t aSize) in otIp4CidrToString()
|
D | ip6_api.cpp | 195 void otIp6AddressToString(const otIp6Address *aAddress, char *aBuffer, uint16_t aSize) in otIp6AddressToString() 202 void otIp6SockAddrToString(const otSockAddr *aSockAddr, char *aBuffer, uint16_t aSize) in otIp6SockAddrToString() 209 void otIp6PrefixToString(const otIp6Prefix *aPrefix, char *aBuffer, uint16_t aSize) in otIp6PrefixToString()
|
/openthread-3.5.0/tests/unit/ |
D | test_util.cpp | 33 void DumpBuffer(const char *aTextMessage, const uint8_t *aBuffer, uint16_t aBufferLength) in DumpBuffer()
|
/openthread-3.5.0/examples/platforms/simulation/ |
D | infra_if.c | 44 const uint8_t *aBuffer, in otPlatInfraIfSendIcmp6Nd()
|
D | crypto.c | 60 otError otPlatCryptoExportKey(otCryptoKeyRef aKeyRef, uint8_t *aBuffer, size_t aBufferLen, size_t *… in otPlatCryptoExportKey()
|
/openthread-3.5.0/src/core/crypto/ |
D | mbedtls.cpp | 175 int MbedTls::CryptoSecurePrng(void *, unsigned char *aBuffer, size_t aSize) in CryptoSecurePrng()
|
/openthread-3.5.0/src/core/net/ |
D | socket.cpp | 48 void SockAddr::ToString(char *aBuffer, uint16_t aSize) const in ToString()
|
D | ip4_types.cpp | 118 void Address::ToString(char *aBuffer, uint16_t aSize) const in ToString() 162 void Cidr::ToString(char *aBuffer, uint16_t aSize) const in ToString()
|
/openthread-3.5.0/src/core/utils/ |
D | parse_cmdline.cpp | 264 static Error ParseHexString(const char *&aString, uint16_t &aSize, uint8_t *aBuffer, HexStringParse… in ParseHexString() 331 Error ParseAsHexString(const char *aString, uint8_t *aBuffer, uint16_t aSize) in ParseAsHexString() 336 Error ParseAsHexString(const char *aString, uint16_t &aSize, uint8_t *aBuffer) in ParseAsHexString() 341 Error ParseAsHexStringSegment(const char *&aString, uint16_t &aSize, uint8_t *aBuffer) in ParseAsHexStringSegment()
|
/openthread-3.5.0/src/posix/platform/ |
D | trel.cpp | 82 static const char *BufferToString(const uint8_t *aBuffer, uint16_t aLength) in BufferToString() 159 static otError SendPacket(const uint8_t *aBuffer, uint16_t aLength, const otSockAddr *aDestSockAddr) in SendPacket() 273 static void EnqueuePacket(const uint8_t *aBuffer, uint16_t aLength, const otSockAddr *aDestSockAddr) in EnqueuePacket()
|
/openthread-3.5.0/src/core/radio/ |
D | trel_interface.cpp | 395 extern "C" void otPlatTrelHandleReceived(otInstance *aInstance, uint8_t *aBuffer, uint16_t aLength) in otPlatTrelHandleReceived() 406 void Interface::HandleReceived(uint8_t *aBuffer, uint16_t aLength) in HandleReceived()
|
/openthread-3.5.0/src/posix/ |
D | client.cpp | 84 void QuitOnExit(const char *aBuffer) in QuitOnExit() 134 bool DoWrite(int aFile, const void *aBuffer, size_t aSize) in DoWrite()
|
/openthread-3.5.0/src/core/meshcop/ |
D | network_name.hpp | 70 NameData(const char *aBuffer, uint8_t aLength) { Init(aBuffer, aLength); } in NameData()
|
/openthread-3.5.0/third_party/jlink/SEGGER_RTT_V640/Syscalls/ |
D | SEGGER_RTT_Syscalls_SES.c | 200 char aBuffer[PRINTF_BUFFER_SIZE]; in printf() local
|