/openthread-latest/src/include/common/ |
D | arg_macros.hpp | 79 #define _OT_GET_SECOND_ARG(aNum, ...) _OT_GET_SECOND_APPEND_NUM_ARGS(aNum, __VA_ARGS__) argument 80 #define _OT_GET_SECOND_APPEND_NUM_ARGS(aNum, ...) _OT_GET_SECOND_WITH_##aNum(__VA_ARGS__) argument 85 #define _OT_GET_REST_ARGS(aNum, ...) _OT_GET_REST_APPEND_NUM_ARGS(aNum, __VA_ARGS__) argument 86 #define _OT_GET_REST_APPEND_NUM_ARGS(aNum, ...) _OT_GET_REST_WITH_##aNum(__VA_ARGS__) argument
|
/openthread-latest/src/posix/platform/ |
D | memory.cpp | 38 void *otPlatCAlloc(size_t aNum, size_t aSize) { return calloc(aNum, aSize); } in otPlatCAlloc() argument
|
/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() argument
|
/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() argument
|
/openthread-latest/tests/nexus/platform/ |
D | nexus_misc.cpp | 74 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument 76 void *ptr = calloc(aNum, aSize); in otPlatCAlloc()
|
/openthread-latest/src/core/api/ |
D | coap_api.cpp | 108 otError otCoapMessageAppendBlock2Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock… in otCoapMessageAppendBlock2Option() argument 110 … return AsCoapMessage(aMessage).AppendBlockOption(Coap::Message::kBlockType2, aNum, aMore, aSize); in otCoapMessageAppendBlock2Option() 113 otError otCoapMessageAppendBlock1Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock… in otCoapMessageAppendBlock1Option() argument 115 … return AsCoapMessage(aMessage).AppendBlockOption(Coap::Message::kBlockType1, aNum, aMore, aSize); in otCoapMessageAppendBlock1Option()
|
/openthread-latest/include/openthread/platform/ |
D | memory.h | 73 void *otPlatCAlloc(size_t aNum, size_t aSize);
|
/openthread-latest/include/openthread/ |
D | coap.h | 619 otError otCoapMessageAppendBlock2Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock… 633 otError otCoapMessageAppendBlock1Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock…
|
/openthread-latest/src/core/coap/ |
D | coap_message.cpp | 288 Error Message::AppendBlockOption(Message::BlockType aType, uint32_t aNum, bool aMore, otCoapBlockSz… in AppendBlockOption() argument 295 VerifyOrExit(aNum < kBlockNumMax, error = kErrorInvalidArgs); in AppendBlockOption() 298 encoded |= aNum << kBlockNumOffset; in AppendBlockOption()
|
D | coap_message.hpp | 472 Error AppendBlockOption(BlockType aType, uint32_t aNum, bool aMore, otCoapBlockSzx aSize);
|
/openthread-latest/tests/gtest/ |
D | fake_platform.cpp | 475 void *otPlatCAlloc(size_t aNum, size_t aSize) { return calloc(aNum, aSize); } in otPlatCAlloc() argument
|
/openthread-latest/tests/unit/ |
D | test_platform.cpp | 108 OT_TOOL_WEAK void *otPlatCAlloc(size_t aNum, size_t aSize) { return calloc(aNum, aSize); } in otPlatCAlloc() argument
|
D | test_srp_server.cpp | 113 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument 115 void *ptr = calloc(aNum, aSize); in otPlatCAlloc()
|
D | test_dns_client.cpp | 117 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument 119 void *ptr = calloc(aNum, aSize); in otPlatCAlloc()
|
D | test_srp_adv_proxy.cpp | 437 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument 439 void *ptr = calloc(aNum, aSize); in otPlatCAlloc()
|
D | test_dnssd_discovery_proxy.cpp | 118 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument 120 void *ptr = calloc(aNum, aSize); in otPlatCAlloc()
|
D | test_routing_manager.cpp | 370 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument 372 void *ptr = calloc(aNum, aSize); in otPlatCAlloc()
|
D | test_mdns.cpp | 1539 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument 1541 void *ptr = calloc(aNum, aSize); in otPlatCAlloc()
|