Lines Matching defs:total
517 size_t total;
520 if (coap_get_data_large(request, &size, &data, &offset, &total) &&
521 size != total) {
524 * However, total unfortunately is only an indication, so it is not safe to
525 * allocate a block based on total. As per
528 * estimate the client has of the total size of the resource
571 offset, total);
575 if (offset + size == total) {
994 size_t total;
1064 if (coap_get_data_large(request, &size, &data, &offset, &total)) {
1066 assert(size == total);
1067 body_data = coap_new_binary(total);
1299 size_t total;
1369 if (coap_get_data_large(request, &size, &data, &offset, &total) &&
1370 size != total) {
1373 * However, total unfortunately is only an indication, so it is not safe to
1374 * allocate a block based on total. As per
1377 * estimate the client has of the total size of the resource
1434 if (offset + size == total) {
1610 size_t total;
1636 if (coap_get_data_large(received, &size, &data, &offset, &total)) {
1638 assert(size == total);
1639 body_data = coap_new_binary(total);
2146 "\t-d max \t\tAllow dynamic creation of up to a total of max\n"