Home
last modified time | relevance | path

Searched refs:resource (Results 1 – 8 of 8) sorted by relevance

/openthread-2.7.6/src/cli/
DREADME_COAP.md13 On node 1, setup CoAP server with resource `test-resource`.
18 > coap resource test-resource
27 > coap get fdde:ad00:beef:0:d395:daee:a75:3964 test-resource
30 > coap put fdde:ad00:beef:0:2780:9423:166c:1aac test-resource con payload
56 - [resource](#resource-uri-path)
75 resource
86 Request the cancellation of an existing observation subscription to a remote resource.
96 - uri-path: URI path of the resource.
101 > coap delete fdde:ad00:beef:0:2780:9423:166c:1aac test-resource con payload
108 - uri-path: URI path of the resource.
[all …]
DREADME_COAPS.md33 On node 1, setup CoAPS server with resource `test-resource`.
38 > coaps resource test-resource
50 > coaps get test-resource
53 > coaps put test-resource con payload
93 - [resource](#resource-uri-path)
113 resource
137 - uri-path: URI path of the resource.
142 > coaps delete test-resource con payload
156 - uri-path: URI path of the resource.
160 > coaps get test-resource
[all …]
/openthread-2.7.6/src/core/coap/
Dcoap.cpp1322 for (const ResourceBlockWise &resource : mBlockWiseResources) in ProcessReceivedRequest() local
1324 if (strcmp(resource.GetUriPath(), uriPath) != 0) in ProcessReceivedRequest()
1329 …if ((resource.mReceiveHook != nullptr || resource.mTransmitHook != nullptr) && blockOptionType != … in ProcessReceivedRequest()
1334 if (resource.mReceiveHook != nullptr) in ProcessReceivedRequest()
1336 … switch (ProcessBlock1Request(aMessage, aMessageInfo, resource, totalTransfereSize)) in ProcessReceivedRequest()
1339 resource.HandleRequest(aMessage, aMessageInfo); in ProcessReceivedRequest()
1360 if (resource.mTransmitHook != nullptr) in ProcessReceivedRequest()
1362 … if ((error = ProcessBlock2Request(aMessage, aMessageInfo, resource)) != kErrorNone) in ProcessReceivedRequest()
1374 resource.HandleRequest(aMessage, aMessageInfo); in ProcessReceivedRequest()
1383 for (const Resource &resource : mResources) in ProcessReceivedRequest() local
[all …]
/openthread-2.7.6/third_party/mbedtls/repo/configs/
DREADME.txt4 a restricted number of ciphersuites) and aim at minimizing resource usage for
/openthread-2.7.6/third_party/tcplp/
DREADME.md23 resource-constrained embedded systems. It is designed to support performant and
/openthread-2.7.6/
DSTYLE_GUIDE.md66 … example, if there is a free function or object method that allocates a resource, then there shoul…
106 - Heap-based resource allocation should be avoided.
/openthread-2.7.6/third_party/mbedtls/repo/docs/architecture/testing/
Dinvasive-testing.md296 Goal: test the absence of resource leaks in the PSA key store code, in particular that `psa_close_k…
/openthread-2.7.6/third_party/mbedtls/repo/
DChangeLog467 denial of service (application crash or extra resource consumption).
1810 * Fix a resource leak on Windows platforms in mbedtls_x509_crt_parse_path(),
1993 * Fix a resource leak in ssl_cookie, when using MBEDTLS_THREADING_C.