/openthread-latest/src/core/api/ |
D | srp_client_buffers_api.cpp | 44 char *otSrpClientBuffersGetHostNameString(otInstance *aInstance, uint16_t *aSize) in otSrpClientBuffersGetHostNameString() 73 …entBuffersGetServiceEntryServiceNameString(otSrpClientBuffersServiceEntry *aEntry, uint16_t *aSize) in otSrpClientBuffersGetServiceEntryServiceNameString() 80 …ntBuffersGetServiceEntryInstanceNameString(otSrpClientBuffersServiceEntry *aEntry, uint16_t *aSize) in otSrpClientBuffersGetServiceEntryInstanceNameString() 87 …otSrpClientBuffersGetServiceEntryTxtBuffer(otSrpClientBuffersServiceEntry *aEntry, uint16_t *aSize) in otSrpClientBuffersGetServiceEntryTxtBuffer()
|
D | heap_api.cpp | 42 void *otHeapCAlloc(size_t aCount, size_t aSize) in otHeapCAlloc() 63 void *otHeapCAlloc(size_t aCount, size_t aSize) { return ot::Heap::CAlloc(aCount, aSize); } in otHeapCAlloc()
|
D | random_crypto_api.cpp | 42 otError otRandomCryptoFillBuffer(uint8_t *aBuffer, uint16_t aSize) in otRandomCryptoFillBuffer()
|
D | random_noncrypto_api.cpp | 61 void otRandomNonCryptoFillBuffer(uint8_t *aBuffer, uint16_t aSize) { Random::NonCrypto::FillBuffer(… in otRandomNonCryptoFillBuffer()
|
D | nat64_api.cpp | 165 void otIp4AddressToString(const otIp4Address *aAddress, char *aBuffer, uint16_t aSize) in otIp4AddressToString() 174 void otIp4CidrToString(const otIp4Cidr *aCidr, char *aBuffer, uint16_t aSize) in otIp4CidrToString()
|
D | ip6_api.cpp | 189 void otIp6AddressToString(const otIp6Address *aAddress, char *aBuffer, uint16_t aSize) in otIp6AddressToString() 196 void otIp6SockAddrToString(const otSockAddr *aSockAddr, char *aBuffer, uint16_t aSize) in otIp6SockAddrToString() 203 void otIp6PrefixToString(const otIp6Prefix *aPrefix, char *aBuffer, uint16_t aSize) in otIp6PrefixToString()
|
D | coap_api.cpp | 103 uint16_t otCoapBlockSizeFromExponent(otCoapBlockSzx aSize) in otCoapBlockSizeFromExponent() 108 …CoapMessageAppendBlock2Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlockSzx aSize) in otCoapMessageAppendBlock2Option() 113 …CoapMessageAppendBlock1Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlockSzx aSize) in otCoapMessageAppendBlock1Option()
|
D | history_tracker_api.cpp | 132 void otHistoryTrackerEntryAgeToString(uint32_t aEntryAge, char *aBuffer, uint16_t aSize) in otHistoryTrackerEntryAgeToString()
|
D | instance_api.cpp | 104 void otInstanceGetUptimeAsString(otInstance *aInstance, char *aBuffer, uint16_t aSize) in otInstanceGetUptimeAsString()
|
/openthread-latest/src/core/utils/ |
D | srp_client_buffers.hpp | 115 char *GetServiceNameString(uint16_t &aSize) in GetServiceNameString() 128 char *GetInstanceNameString(uint16_t &aSize) in GetInstanceNameString() 141 uint8_t *GetTxtBuffer(uint16_t &aSize) in GetTxtBuffer() 185 char *GetHostNameString(uint16_t &aSize) in GetHostNameString()
|
D | parse_cmdline.cpp | 233 static Error ParseHexString(const char *&aString, uint16_t &aSize, uint8_t *aBuffer, HexStringParse… in ParseHexString() 300 Error ParseAsHexString(const char *aString, uint8_t *aBuffer, uint16_t aSize) in ParseAsHexString() 305 Error ParseAsHexString(const char *aString, uint16_t &aSize, uint8_t *aBuffer) in ParseAsHexString() 310 Error ParseAsHexStringSegment(const char *&aString, uint16_t &aSize, uint8_t *aBuffer) in ParseAsHexStringSegment()
|
D | heap.cpp | 63 void *Heap::CAlloc(size_t aCount, size_t aSize) in CAlloc()
|
D | heap.hpp | 81 void SetSize(uint16_t aSize) { mSize = aSize; } in SetSize()
|
/openthread-latest/src/core/common/ |
D | random.hpp | 83 …static Error CryptoFillBuffer(uint8_t *aBuffer, uint16_t aSize) { return otPlatCryptoRandomGet(aBu… in CryptoFillBuffer() 204 inline Error FillBuffer(uint8_t *aBuffer, uint16_t aSize) { return Manager::CryptoFillBuffer(aBuffe… in FillBuffer()
|
D | heap.cpp | 43 void *CAlloc(size_t aCount, size_t aSize) { return otPlatCAlloc(aCount, aSize); } in CAlloc()
|
D | appender.cpp | 45 Appender::Appender(uint8_t *aBuffer, uint16_t aSize) in Appender()
|
D | random.cpp | 151 void FillBuffer(uint8_t *aBuffer, uint16_t aSize) in FillBuffer()
|
/openthread-latest/src/posix/platform/ |
D | memory.cpp | 38 void *otPlatCAlloc(size_t aNum, size_t aSize) { return calloc(aNum, aSize); } in otPlatCAlloc()
|
/openthread-latest/src/ncp/ |
D | ncp_base_dispatcher.cpp | 38 constexpr bool NcpBase::AreHandlerEntriesSorted(const HandlerEntry *aHandlerEntries, size_t aSize) in AreHandlerEntriesSorted() 812 size_t aSize, in FindPropertyHandler()
|
/openthread-latest/examples/platforms/simulation/ |
D | flash.c | 118 …FlashRead(otInstance *aInstance, uint8_t aSwapIndex, uint32_t aOffset, void *aData, uint32_t aSize) in otPlatFlashRead() 133 …ite(otInstance *aInstance, uint8_t aSwapIndex, uint32_t aOffset, const void *aData, uint32_t aSize) in otPlatFlashWrite()
|
/openthread-latest/src/core/crypto/ |
D | mbedtls.cpp | 175 int MbedTls::CryptoSecurePrng(void *, unsigned char *aBuffer, size_t aSize) in CryptoSecurePrng()
|
/openthread-latest/examples/apps/ncp/ |
D | main.c | 64 OT_TOOL_WEAK void *otPlatCAlloc(size_t aNum, size_t aSize) { return calloc(aNum, aSize); } in otPlatCAlloc()
|
/openthread-latest/examples/apps/cli/ |
D | main.c | 58 OT_TOOL_WEAK void *otPlatCAlloc(size_t aNum, size_t aSize) { return calloc(aNum, aSize); } in otPlatCAlloc()
|
/openthread-latest/src/core/thread/ |
D | lowpan.hpp | 448 void Init(uint16_t aSize, uint16_t aTag) in Init() 478 void Init(uint16_t aSize, uint16_t aTag, uint16_t aOffset) in Init()
|
/openthread-latest/tests/nexus/platform/ |
D | nexus_misc.cpp | 74 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc()
|