Home
last modified time | relevance | path

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

/system/update_engine/common/
Dsubprocess.cc123 bool eof; in OnStdoutReady() local
125 record->stdout_fd, buf, arraysize(buf), &bytes_read, &eof); in OnStdoutReady()
127 if (!ok || eof) { in OnStdoutReady()
Dutils.cc186 int fd, void* buf, size_t count, size_t* out_bytes_read, bool* eof) { in ReadAll() argument
189 *eof = false; in ReadAll()
204 *eof = true; in ReadAll()
Dutils.h80 int fd, void* buf, size_t count, size_t* out_bytes_read, bool* eof);
/system/update_engine/payload_consumer/
Dpostinstall_runner_action.cc230 bool eof; in OnProgressFdReady() local
232 utils::ReadAll(progress_fd_, buf, arraysize(buf), &bytes_read, &eof); in OnProgressFdReady()
244 if (!ok || eof) { in OnProgressFdReady()
/system/netd/libnetdutils/include/netdutils/
DStatus.h64 const Status eof{0x10001, "end of file"};
/system/apex/apexd/
Dapex_shim.cpp61 while (!apex.eof()) { in CalculateSha512()
/system/core/adb/
Dsysdeps_win32.cpp129 int eof; member
197 f->eof = 0; in _fh_alloc()
225 f->eof = 0; in _fh_close()
275 f->eof = 1; in _fh_file_read()
288 f->eof = 1; in _fh_file_write()
341 f->eof = 0; in _fh_file_lseek()
/system/netd/libnetdutils/
DSyscalls.cpp169 return status::eof; in recvfrom()
/system/bt/service/client/
Dmain.cc1136 if (istream.eof() || should_exit.load()) { in main()