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()
217 success_callback, read, eos)); in ReadAsyncImpl()
220 success_callback.Run(read, eos); in ReadAsyncImpl()
236 bool eos) { in OnReadAsyncDone() argument
238 success_callback.Run(bytes_read, eos); in OnReadAsyncDone()
326 bool eos) { in ReadAllAsyncCallback() argument
329 if (size_to_read != 0 && eos) { in ReadAllAsyncCallback()