Searched refs:coap_get_data_large (Results 1 – 12 of 12) sorted by relevance
/third_party/libcoap/man/ |
D | coap_block.txt.in | 17 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.
|
D | coap_pdu_access.txt.in | 259 *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,
|
D | coap_cache.txt.in | 241 if (coap_get_data_large(request, &size, &data, &offset, &total) &&
|
D | coap_resource.txt.in | 384 coap_get_data_large(request, &length, &data, &offset, &total);
|
/third_party/libcoap/ |
D | libcoap-3.sym | 83 coap_get_data_large
|
D | libcoap-3.map | 85 coap_get_data_large;
|
/third_party/libcoap/include/coap3/ |
D | pdu.h | 510 int coap_get_data_large(const coap_pdu_t *pdu,
|
/third_party/libcoap/doc/ |
D | upgrade_4.2.1_4.3.0.txt | 356 `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/ |
D | coap-server.c | 484 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()
|
D | coap-client.c | 362 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/ |
D | pdu.c | 658 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
|
D | block.c | 1240 coap_get_data_large(pdu, &length, &data, &offset, &total); in coap_handle_request_put_block()
|