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

/system/core/libcutils/
H A Dopen_memstream.c67 size_t* sizep; /* pointer to eof */
70 size_t eof; /* furthest point we've written to */ member in struct:__anon1672
129 if (stream->eof < stream->offset) {
131 stream->eof, stream->offset-1));
132 memset(*stream->bufp + stream->eof, '\0',
133 stream->offset - stream->eof);
140 if (stream->offset > stream->eof) {
144 stream->eof = stream->offset;
170 newPosn += stream->eof;
180 if (stream->offset < stream->eof) {
[all...]
/system/update_engine/common/
H A Dsubprocess.cc122 bool eof; local
124 record->stdout_fd, buf, arraysize(buf), &bytes_read, &eof);
126 if (!ok || eof) {
H A Dutils.cc198 int fd, void* buf, size_t count, size_t* out_bytes_read, bool* eof) {
201 *eof = false;
216 *eof = true;
197 ReadAll( int fd, void* buf, size_t count, size_t* out_bytes_read, bool* eof) argument
/system/update_engine/payload_consumer/
H A Dpostinstall_runner_action.cc229 bool eof; local
231 utils::ReadAll(progress_fd_, buf, arraysize(buf), &bytes_read, &eof);
243 if (!ok || eof) {
/system/extras/tests/sdcard/
H A Dsysutil.cpp95 bool eof = false; local
101 while (size > 0 && !error && !eof && attempts < kMaxAttempts)
117 eof = true;
136 if (!eof)
476 bool eof = false; local
482 while (size > 0 && !error && !eof && attempts < kMaxAttempts)
498 eof = true;
529 bool eof = false; local
537 while (size > 0 && !error && !eof && attempts < kMaxAttempts)
553 eof
[all...]
/system/core/adb/
H A Dsysdeps_win32.cpp123 int eof; member in struct:FHRec_
191 f->eof = 0;
219 f->eof = 0;
269 f->eof = 1;
282 f->eof = 1;
306 f->eof = 0;

Completed in 148 milliseconds