Searched defs:amount_read (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/cpio/
H A Dcpio.c2825 int amount_read; local
2842 if ((amount_read = read(Ifile, Buffr.b_in_p, readsz)) < 0) {
2853 if (amount_read == 0) {
2857 } else if (amount_read > amt_to_read) {
2860 (amount_read - amt_to_read);
2861 amount_read = amt_to_read;
2862 } else if (amount_read == amt_to_read) {
2867 Buffr.b_in_p += amount_read;
2868 Buffr.b_cnt += (long)amount_read;
2870 amt_to_read -= (off_t)amount_read;
[all...]

Completed in 74 milliseconds