Home
last modified time | relevance | path

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

/external/libcups/cups/
Dhttp.c1111 return (http ? (size_t)http->data_remaining : 0); in httpGetRemaining()
1616 http->data_remaining <= 0) in httpPeek()
1636 http->data_remaining = strtoll(len, NULL, 16); in httpPeek()
1638 if (http->data_remaining < 0) in httpPeek()
1646 CUPS_LLCAST http->data_remaining)); in httpPeek()
1648 if (http->data_remaining <= 0 && http->data_encoding != HTTP_ENCODING_FIELDS) in httpPeek()
1679 else if (length > (size_t)http->data_remaining) in httpPeek()
1680 length = (size_t)http->data_remaining; in httpPeek()
1707 if ((size_t)http->data_remaining > sizeof(http->buffer)) in httpPeek()
1710 buflen = (ssize_t)http->data_remaining; in httpPeek()
[all …]
Dhttp-private.h253 off_t data_remaining; /* Number of bytes left */ member
Dipp.c2824 …emaining=" CUPS_LLFMT, (void *)http, (void *)ipp, CUPS_LLCAST (http ? http->data_remaining : -1))); in ippRead()
/external/libpcap/
Dsf-pcapng.c184 size_t data_remaining; member
286 size_t data_remaining; in read_block() local
354 data_remaining = bhdr.total_length - sizeof(bhdr); in read_block()
355 if (read_bytes(fp, bdata, data_remaining, 1, errbuf) == -1) in read_block()
361 btrlr = (struct block_trailer *)(bdata + data_remaining - sizeof (struct block_trailer)); in read_block()
382 cursor->data_remaining = data_remaining - sizeof(struct block_trailer); in read_block()
397 if (cursor->data_remaining < chunk_size) { in get_from_block_data()
409 cursor->data_remaining -= chunk_size; in get_from_block_data()
471 while (cursor->data_remaining != 0) { in process_idb_options()
/external/scapy/scapy/layers/
Dtftp.py470 def data_remaining(self): member in TFTP_RRQ_server