Home
last modified time | relevance | path

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

/third_party/libcoap/man/
Dcoap_block.txt.in17 coap_get_data_large,
38 *int coap_get_data_large(const coap_pdu_t *_pdu_, size_t *_length,
85 To obtain the data, length and current offset, *coap_get_data_large*() must
154 The *coap_get_data_large*() function is used abstract from the _pdu_
165 data as returned by *coap_get_data_large*() into a single blob of data. Data
182 *coap_get_data_large*() functions return 0 on failure, 1 on success.
Dcoap_pdu_access.txt.in259 *NOTE:* This function has been updated by *coap_get_data_large*() when large
325 ret = coap_get_data_large(pdu, &pdu_data_length, &pdu_data,
Dcoap_cache.txt.in241 if (coap_get_data_large(request, &size, &data, &offset, &total) &&
Dcoap_resource.txt.in384 coap_get_data_large(request, &length, &data, &offset, &total);
/third_party/libcoap/
Dlibcoap-3.sym83 coap_get_data_large
Dlibcoap-3.map85 coap_get_data_large;
/third_party/libcoap/include/coap3/
Dpdu.h510 int coap_get_data_large(const coap_pdu_t *pdu,
/third_party/libcoap/doc/
Dupgrade_4.2.1_4.3.0.txt356 `coap_get_data_large()` used instead of `coap_get_data()`. See man page
376 By calling `coap_get_data_large()`, the application can determine if this is
394 `coap_get_data_large()` will only return the entire body of data (`offset`
/third_party/libcoap/examples/
Dcoap-server.c484 if (coap_get_data_large(request, &size, &data, &offset, &total) && in hnd_put_example_data()
1082 if (coap_get_data_large(request, &size, &data, &offset, &total) && in hnd_proxy_uri()
1417 if (coap_get_data_large(request, &size, &data, &offset, &total) && in hnd_put()
1638 if (coap_get_data_large(received, &size, &data, &offset, &total) && in proxy_message_handler()
Dcoap-client.c362 if (coap_get_data_large(received, &len, &databuf, &offset, &total)) { in message_handler()
393 if (coap_get_data_large(received, &len, &databuf, &offset, &total)) { in message_handler()
/third_party/libcoap/src/
Dpdu.c658 return coap_get_data_large(pdu, len, data, &offset, &total); in coap_get_data()
662 coap_get_data_large(const coap_pdu_t *pdu, size_t *len, const uint8_t **data, in coap_get_data_large() function
Dblock.c1240 coap_get_data_large(pdu, &length, &data, &offset, &total); in coap_handle_request_put_block()