Home
last modified time | relevance | path

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

/openthread-3.6.0/src/cli/
DREADME_COAP.md50 - [delete](#delete-address-uri-path-type-payload)
51 - [get](#get-address-uri-path-type)
52 - [observe](#observe-address-uri-path-type)
54 - [post](#post-address-uri-path-type-payload)
55 - [put](#put-address-uri-path-type-payload)
56 - [resource](#resource-uri-path)
93 ### delete \<address\> \<uri-path\> \[type\] \[payload\]
96 - uri-path: URI path of the resource.
105 ### get \<address\> \<uri-path\> \[type\]
108 - uri-path: URI path of the resource.
[all …]
DREADME_COAPS.md87 - [delete](#delete-uri-path-type-payload)
89 - [get](#get-uri-path-type)
90 - [post](#post-uri-path-type-payload)
92 - [put](#put-uri-path-type-payload)
93 - [resource](#resource-uri-path)
135 ### delete \<uri-path\> \[type\] \[payload\]
137 - uri-path: URI path of the resource.
154 ### get \<uri-path\> \[type\]
156 - uri-path: URI path of the resource.
169 ### post \<uri-path\> \[type\] \[payload\]
[all …]
/openthread-3.6.0/src/core/thread/
Duri_paths.cpp154 Uri uri = kUriUnknown; in UriFromPath() local
158 uri = static_cast<Uri>(entry - UriList::kEntries); in UriFromPath()
161 return uri; in UriFromPath()
Dtmf.cpp114 Uri uri = UriFromPath(aUriPath); in HandleResource() local
121 switch (uri) in HandleResource()
296 Uri uri = UriFromPath(aUriPath); in HandleResource() local
303 switch (uri) in HandleResource()
/openthread-3.6.0/src/core/backbone_router/
Dbackbone_tmf.cpp81 Uri uri = UriFromPath(aUriPath); in HandleResource() local
88 switch (uri) in HandleResource()
/openthread-3.6.0/third_party/mbedtls/repo/tests/data_files/
Dtest-ca.opensslconf55 CPS.1 ="CPS uri string"
/openthread-3.6.0/tests/scripts/thread-cert/pktverify/
Dlayer_fields.py655 def is_layer_field(uri: str) -> bool:
661 return uri in _LAYER_FIELDS
664 def is_layer_field_container(uri: str) -> bool:
670 return uri in _layer_containers
/openthread-3.6.0/tests/scripts/thread-cert/
Dnode.py2840 def coap_delete(self, ipaddr, uri, con=False, payload=None): argument
2844 return self._coap_rq('delete', ipaddr, uri, con, payload)
2846 def coap_get(self, ipaddr, uri, con=False, payload=None): argument
2850 return self._coap_rq('get', ipaddr, uri, con, payload)
2852 def coap_get_block(self, ipaddr, uri, size=16, count=0): argument
2856 return self._coap_rq_block('get', ipaddr, uri, size, count)
2858 def coap_observe(self, ipaddr, uri, con=False, payload=None): argument
2862 return self._coap_rq('observe', ipaddr, uri, con, payload)
2864 def coap_post(self, ipaddr, uri, con=False, payload=None): argument
2868 return self._coap_rq('post', ipaddr, uri, con, payload)
[all …]