Home
last modified time | relevance | path

Searched refs:aNum (Results 1 – 12 of 12) sorted by relevance

/openthread-3.4.0/src/core/common/
Darg_macros.hpp82 #define _OT_GET_SECOND_ARG(aNum, ...) _OT_GET_SECOND_APPEND_NUM_ARGS(aNum, __VA_ARGS__) argument
83 #define _OT_GET_SECOND_APPEND_NUM_ARGS(aNum, ...) _OT_GET_SECOND_WITH_##aNum(__VA_ARGS__) argument
88 #define _OT_GET_REST_ARGS(aNum, ...) _OT_GET_REST_APPEND_NUM_ARGS(aNum, __VA_ARGS__) argument
89 #define _OT_GET_REST_APPEND_NUM_ARGS(aNum, ...) _OT_GET_REST_WITH_##aNum(__VA_ARGS__) argument
/openthread-3.4.0/src/posix/platform/
Dmemory.cpp38 void *otPlatCAlloc(size_t aNum, size_t aSize) { return calloc(aNum, aSize); } in otPlatCAlloc() argument
/openthread-3.4.0/examples/apps/ncp/
Dmain.c49 OT_TOOL_WEAK void *otPlatCAlloc(size_t aNum, size_t aSize) { return calloc(aNum, aSize); } in otPlatCAlloc() argument
/openthread-3.4.0/examples/apps/cli/
Dmain.c53 OT_TOOL_WEAK void *otPlatCAlloc(size_t aNum, size_t aSize) { return calloc(aNum, aSize); } in otPlatCAlloc() argument
/openthread-3.4.0/include/openthread/platform/
Dmemory.h74 void *otPlatCAlloc(size_t aNum, size_t aSize);
/openthread-3.4.0/src/core/api/
Dcoap_api.cpp107 otError otCoapMessageAppendBlock2Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock… in otCoapMessageAppendBlock2Option() argument
109 … return AsCoapMessage(aMessage).AppendBlockOption(Coap::Message::kBlockType2, aNum, aMore, aSize); in otCoapMessageAppendBlock2Option()
112 otError otCoapMessageAppendBlock1Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock… in otCoapMessageAppendBlock1Option() argument
114 … return AsCoapMessage(aMessage).AppendBlockOption(Coap::Message::kBlockType1, aNum, aMore, aSize); in otCoapMessageAppendBlock1Option()
/openthread-3.4.0/include/openthread/
Dcoap.h634 otError otCoapMessageAppendBlock2Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock…
649 otError otCoapMessageAppendBlock1Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock…
/openthread-3.4.0/src/core/coap/
Dcoap_message.cpp251 Error Message::AppendBlockOption(Message::BlockType aType, uint32_t aNum, bool aMore, otCoapBlockSz… in AppendBlockOption() argument
258 VerifyOrExit(aNum < kBlockNumMax, error = kErrorInvalidArgs); in AppendBlockOption()
261 encoded |= aNum << kBlockNumOffset; in AppendBlockOption()
Dcoap_message.hpp480 Error AppendBlockOption(BlockType aType, uint32_t aNum, bool aMore, otCoapBlockSzx aSize);
/openthread-3.4.0/tests/unit/
Dtest_platform.cpp86 OT_TOOL_WEAK void *otPlatCAlloc(size_t aNum, size_t aSize) { return calloc(aNum, aSize); } in otPlatCAlloc() argument
Dtest_srp_server.cpp110 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument
112 void *ptr = calloc(aNum, aSize); in otPlatCAlloc()
Dtest_dns_client.cpp113 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument
115 void *ptr = calloc(aNum, aSize); in otPlatCAlloc()