Home
last modified time | relevance | path

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

/external/openthread/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
/external/python/cpython2/Mac/Modules/
D_scproxy.c52 CFNumberRef aNum = NULL; in get_proxy_settings() local
68 aNum = CFDictionaryGetValue(proxyDict, in get_proxy_settings()
70 if (aNum == NULL) { in get_proxy_settings()
73 v = PyBool_FromLong(cfnum_to_int32(aNum)); in get_proxy_settings()
130 CFNumberRef aNum; in set_proxy() local
132 aNum = CFDictionaryGetValue(proxyDict, enabledKey); in set_proxy()
133 if (aNum && cfnum_to_int32(aNum)) { in set_proxy()
137 aNum = CFDictionaryGetValue(proxyDict, portKey); in set_proxy()
144 if (aNum) { in set_proxy()
145 int32_t port = cfnum_to_int32(aNum); in set_proxy()
/external/python/cpython3/Modules/
D_scproxy.c59 CFNumberRef aNum = NULL; in get_proxy_settings() local
76 aNum = CFDictionaryGetValue(proxyDict, in get_proxy_settings()
78 if (aNum == NULL) { in get_proxy_settings()
81 v = PyBool_FromLong(cfnum_to_int32(aNum)); in get_proxy_settings()
135 CFNumberRef aNum; in set_proxy() local
137 aNum = CFDictionaryGetValue(proxyDict, enabledKey); in set_proxy()
138 if (aNum && cfnum_to_int32(aNum)) { in set_proxy()
142 aNum = CFDictionaryGetValue(proxyDict, portKey); in set_proxy()
149 if (aNum) { in set_proxy()
150 int32_t port = cfnum_to_int32(aNum); in set_proxy()
/external/openthread/src/posix/platform/
Dmemory.cpp37 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument
39 return calloc(aNum, aSize); in otPlatCAlloc()
/external/openthread/examples/apps/ncp/
Dmain.c49 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument
51 return calloc(aNum, aSize); in otPlatCAlloc()
/external/openthread/examples/apps/cli/
Dmain.c53 void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument
55 return calloc(aNum, aSize); in otPlatCAlloc()
/external/openthread/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()
/external/openthread/include/openthread/platform/
Dmemory.h74 void *otPlatCAlloc(size_t aNum, size_t aSize);
/external/openthread/src/core/coap/
Dcoap_message.cpp257 Error Message::AppendBlockOption(Message::BlockType aType, uint32_t aNum, bool aMore, otCoapBlockSz… in AppendBlockOption() argument
264 VerifyOrExit(aNum < kBlockNumMax, error = kErrorInvalidArgs); in AppendBlockOption()
267 encoded |= aNum << kBlockNumOffset; in AppendBlockOption()
Dcoap_message.hpp479 Error AppendBlockOption(BlockType aType, uint32_t aNum, bool aMore, otCoapBlockSzx aSize);
/external/openthread/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…
/external/openthread/tests/unit/
Dtest_platform.cpp81 OT_TOOL_WEAK void *otPlatCAlloc(size_t aNum, size_t aSize) in otPlatCAlloc() argument
83 return calloc(aNum, aSize); in otPlatCAlloc()