Home
last modified time | relevance | path

Searched refs:out_bytes_read (Results 1 – 3 of 3) sorted by relevance

/system/update_engine/payload_consumer/
Dextent_reader.cc79 ssize_t out_bytes_read; in Read() local
85 &out_bytes_read)); in Read()
86 TEST_AND_RETURN_FALSE(out_bytes_read == in Read()
/system/update_engine/common/
Dutils.h87 int fd, void* buf, size_t count, size_t* out_bytes_read, bool* eof);
92 int fd, void* buf, size_t count, off_t offset, ssize_t* out_bytes_read);
99 ssize_t* out_bytes_read);
108 ssize_t* out_bytes_read);
Dutils.cc123 int fd, void* buf, size_t count, size_t* out_bytes_read, bool* eof) { in ReadAll() argument
134 *out_bytes_read = bytes_read; in ReadAll()
147 *out_bytes_read = bytes_read; in ReadAll()
205 int fd, void* buf, size_t count, off_t offset, ssize_t* out_bytes_read) { in PReadAll() argument
217 *out_bytes_read = bytes_read; in PReadAll()
225 ssize_t* out_bytes_read) { in ReadAll() argument
238 *out_bytes_read = bytes_read; in ReadAll()
246 ssize_t* out_bytes_read) { in PReadAll() argument
250 auto success = ReadAll(fd, buf, count, offset, out_bytes_read); in PReadAll()