Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/cpio/
H A Dcpio.c2834 off_t amt_to_read; in read_file() local
2840 amt_to_read = file_size; in read_file()
2842 if (read_exact && amt_to_read < CPIOBSZ) in read_file()
2843 readsz = amt_to_read; in read_file()
2863 *real_filesz = file_size - amt_to_read; in read_file()
2865 } else if (amount_read > amt_to_read) { in read_file()
2868 (amount_read - amt_to_read); in read_file()
2869 amount_read = amt_to_read; in read_file()
2870 } else if (amount_read == amt_to_read) { in read_file()
2878 amt_to_read -= (off_t)amount_read; in read_file()
[all …]