Lines Matching refs:eos
70 bool eos = false; in ReadBlocking() local
71 if (!ReadNonBlocking(buffer, size_to_read, size_read, &eos, error)) in ReadBlocking()
74 if (*size_read > 0 || eos) in ReadBlocking()
208 bool eos = false; in ReadAsyncImpl() local
209 if (!ReadNonBlocking(buffer, size_to_read, &read, &eos, error)) in ReadAsyncImpl()
212 if (read > 0 || eos) { in ReadAsyncImpl()
218 success_callback, read, eos)); in ReadAsyncImpl()
221 success_callback.Run(read, eos); in ReadAsyncImpl()
237 bool eos) { in OnReadAsyncDone() argument
239 success_callback.Run(bytes_read, eos); in OnReadAsyncDone()
328 bool eos) { in ReadAllAsyncCallback() argument
331 if (size_to_read != 0 && eos) { in ReadAllAsyncCallback()