Lines Matching refs:have
117 size_t have;
136 // Just in case we have a read() syscall that doesn't always read the whole file at once
137 have = 0;
138 while (have < fsize) {
139 len = read(file, &buf[have], fsize - have);
142 filename, (long long)have, (long long)(fsize - have), strerror(errno));
147 filename, (long long)have, (long long)(fsize - have));
154 have += len;