Home
last modified time | relevance | path

Searched refs:coap_resource_init (Results 1 – 17 of 17) sorted by relevance

/third_party/libcoap/tests/
Dtest_wellknown.c46 r = coap_resource_init(NULL, 0); in t_wellknown1()
94 r = coap_resource_init(coap_make_str_const("abcd"), 0); in t_wellknown2()
151 r = coap_resource_init(&uri_path, 0); in t_wellknown3()
217 r = coap_resource_init(NULL, 0, 0); in t_wkc_tests_create()
224 r = coap_resource_init((const uint8_t *)"abcd", 4, 0); in t_wkc_tests_create()
234 r = coap_resource_init(buf, len, 0); in t_wkc_tests_create()
/third_party/libcoap/examples/
Doscore-interop-server.c281 r = coap_resource_init(NULL, COAP_RESOURCE_FLAGS_HAS_MCAST_SUPPORT); in init_resources()
289 r = coap_resource_init(coap_make_str_const("oscore/hello/coap"), in init_resources()
294 r = coap_resource_init(coap_make_str_const("oscore/hello/1"), in init_resources()
299 r = coap_resource_init(coap_make_str_const("oscore/hello/2"), in init_resources()
304 r = coap_resource_init(coap_make_str_const("oscore/hello/3"), in init_resources()
309 r = coap_resource_init(coap_make_str_const("oscore/hello/6"), in init_resources()
314 r = coap_resource_init(coap_make_str_const("oscore/hello/7"), in init_resources()
319 r = coap_resource_init(coap_make_str_const("oscore/observe1"), in init_resources()
326 r = coap_resource_init(coap_make_str_const("oscore/observe2"), in init_resources()
333 r = coap_resource_init(coap_make_str_const("oscore/test"), in init_resources()
Detsi_iot_01.c196 r = coap_resource_init(uri, COAP_RESOURCE_FLAGS_RELEASE_URI); in hnd_post_test()
447 r = coap_resource_init(coap_make_str_const("test"), 0); in init_resources()
470 r = coap_resource_init(coap_make_str_const("large"), 0); in init_resources()
491 r = coap_resource_init(coap_make_str_const("seg1/seg2/seg3"), 0); in init_resources()
501 r = coap_resource_init(coap_make_str_const("query"), 0); in init_resources()
508 r = coap_resource_init(coap_make_str_const("separate"), 0); in init_resources()
Dcoap-rd.c457 r = coap_resource_init(&resource_val, 0); in hnd_post_rd()
538 r = coap_resource_init(coap_make_str_const(RD_ROOT_STR), 0); in init_resources()
Dcoap-server.c1538 r = coap_resource_init((coap_str_const_t *)uri_path, in hnd_put_post_unknown()
1749 r = coap_resource_init(NULL, COAP_RESOURCE_FLAGS_HAS_MCAST_SUPPORT); in init_resources()
1759 r = coap_resource_init(coap_make_str_const("time"), resource_flags); in init_resources()
1783 r = coap_resource_init(coap_make_str_const("async"), in init_resources()
1793 r = coap_resource_init(coap_make_str_const("example_data"), resource_flags); in init_resources()
/third_party/libcoap/examples/contiki/
Dserver.c116 r = coap_resource_init(NULL, 0, 0); in init_coap_resources()
126 r = coap_resource_init(coap_make_str_const("time"), 0); in init_coap_resources()
145 r = coap_resource_init(coap_make_str_const("async"), 0); in init_coap_resources()
/third_party/libcoap/examples/lwip/
Dserver-coap.c76 r = coap_resource_init(NULL, 0, 0); in init_coap_resources()
86 r = coap_resource_init(coap_make_str_const("time"), 0); in init_coap_resources()
105 r = coap_resource_init(coap_make_str_const("async"), 0); in init_coap_resources()
/third_party/libcoap/examples/riot/examples_libcoap_server/
Dserver-coap.c80 r = coap_resource_init(NULL, 0, 0); in init_coap_resources()
90 r = coap_resource_init(coap_make_str_const("time"), 0); in init_coap_resources()
111 r = coap_resource_init(coap_make_str_const("async"), 0); in init_coap_resources()
/third_party/libcoap/man/
Dcoap_resource.txt.in14 coap_resource_init,
32 *coap_resource_t *coap_resource_init(coap_str_const_t *_uri_path_,
110 *Function: coap_resource_init()*
112 The *coap_resource_init*() function returns a newly created _resource_ of
235 _context_. The _resource_ must have been created by *coap_resource_init*(),
287 *coap_resource_init*(), *coap_resource_unknown_init*(),
388 r = coap_resource_init(NULL, 0);
399 r = coap_resource_init(coap_make_str_const("time"),
535 /* get the uri_path - which will get used by coap_resource_init() */
553 r = coap_resource_init((coap_str_const_t*)uri_path,
Dcoap_attribute.txt.in134 r = coap_resource_init(NULL, 0);
145 r = coap_resource_init(coap_make_str_const("time"),
Dcoap_observe.txt.in113 used when creating the resource using *coap_resource_init*(3).
254 r = coap_resource_init(coap_make_str_const("time"),
Dcoap_persist.txt.in299 r = coap_resource_init(coap_make_str_const("time"),
Dcoap_block.txt.in522 r = coap_resource_init(coap_make_str_const("time"),
/third_party/libcoap/include/coap3/
Dcoap_resource.h174 coap_resource_t *coap_resource_init(coap_str_const_t *uri_path,
/third_party/libcoap/
Dlibcoap-3.map203 coap_resource_init;
Dlibcoap-3.sym200 coap_resource_init
/third_party/libcoap/src/
Dcoap_resource.c269 coap_resource_init(coap_str_const_t *uri_path, int flags) { function