Home
last modified time | relevance | path

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

/external/libcups/cups/
Dhttp.c1159 return (http ? (size_t)http->data_remaining : 0); in httpGetRemaining()
1661 http->data_remaining <= 0) in httpPeek()
1681 http->data_remaining = strtoll(len, NULL, 16); in httpPeek()
1683 if (http->data_remaining < 0) in httpPeek()
1691 CUPS_LLCAST http->data_remaining)); in httpPeek()
1693 if (http->data_remaining <= 0 && http->data_encoding != HTTP_ENCODING_FIELDS) in httpPeek()
1724 else if (length > (size_t)http->data_remaining) in httpPeek()
1725 length = (size_t)http->data_remaining; in httpPeek()
1752 if ((size_t)http->data_remaining > sizeof(http->buffer)) in httpPeek()
1755 buflen = (ssize_t)http->data_remaining; in httpPeek()
[all …]
Dhttp-private.h319 off_t data_remaining; /* Number of bytes left */ member
Dipp.c2828 …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
280 size_t data_remaining; in read_block() local
348 data_remaining = bhdr.total_length - sizeof(bhdr); in read_block()
349 if (read_bytes(fp, bdata, data_remaining, 1, errbuf) == -1) in read_block()
356 cursor->data_remaining = data_remaining - sizeof(struct block_trailer); in read_block()
371 if (cursor->data_remaining < chunk_size) { in get_from_block_data()
383 cursor->data_remaining -= chunk_size; in get_from_block_data()
445 while (cursor->data_remaining != 0) { in process_idb_options()
/external/scapy/scapy/layers/
Dtftp.py470 def data_remaining(self): member in TFTP_RRQ_server