Home
last modified time | relevance | path

Searched refs:coap_client_req (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/tests/net/lib/coap_client/src/
Dmain.c521 zassert_ok(coap_client_req(&client, 0, &dst_address, &short_request, NULL)); in ZTEST()
531 zassert_equal(coap_client_req(&client, 0, &dst_address, &short_request, NULL), -EAGAIN, ""); in ZTEST()
545 zassert_ok(coap_client_req(&client, 0, &dst_address, &short_request, NULL)); in ZTEST()
557 zassert_ok(coap_client_req(&client, 0, &dst_address, &short_request, NULL)); in ZTEST()
569 zassert_ok(coap_client_req(&client, 0, &dst_address, &short_request, NULL)); in ZTEST()
581 zassert_ok(coap_client_req(&client, 0, &dst_address, &req, NULL)); in ZTEST()
592 zassert_equal(coap_client_req(&client, 0, &dst_address, &req, NULL), -EINVAL, ""); in ZTEST()
597 zassert_ok(coap_client_req(&client, 0, &dst_address, &long_request, NULL)); in ZTEST()
614 zassert_ok(coap_client_req(&client, 0, &dst_address, &short_request, &params)); in ZTEST()
624 zassert_ok(coap_client_req(&client, 0, &dst_address, &short_request, NULL)); in ZTEST()
[all …]
/Zephyr-latest/include/zephyr/net/
Dcoap_client.h148 int coap_client_req(struct coap_client *client, int sock, const struct sockaddr *addr,
/Zephyr-latest/samples/net/sockets/coap_download/src/
Dmain.c76 ret = coap_client_req(&client, sockfd, sa, &request, NULL); in do_coap_download()
/Zephyr-latest/doc/connectivity/networking/api/
Dcoap_client.rst43 ret = coap_client_req(&client, sock, &address, &req, -1);
108 ret = coap_client_req(&client, sock, &address, &req, -1);
/Zephyr-latest/subsys/net/lib/coap/
Dcoap_client.c348 int coap_client_req(struct coap_client *client, int sock, const struct sockaddr *addr, in coap_client_req() function