Searched refs:out_bytes_read (Results 1 – 3 of 3) sorted by relevance
/system/update_engine/payload_consumer/ |
D | extent_reader.cc | 79 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/ |
D | utils.h | 94 int fd, void* buf, size_t count, size_t* out_bytes_read, bool* eof); 99 int fd, void* buf, size_t count, off_t offset, ssize_t* out_bytes_read); 107 ssize_t* out_bytes_read); 113 ssize_t* out_bytes_read) { in ReadAll() argument 114 return ReadAll(fd.get(), buf, count, offset, out_bytes_read); in ReadAll() 124 ssize_t* out_bytes_read); 130 ssize_t* out_bytes_read) { in PReadAll() argument 131 return PReadAll(fd.get(), buf, count, offset, out_bytes_read); in PReadAll()
|
D | utils.cc | 124 int fd, void* buf, size_t count, size_t* out_bytes_read, bool* eof) { in ReadAll() argument 135 *out_bytes_read = bytes_read; in ReadAll() 148 *out_bytes_read = bytes_read; in ReadAll() 206 int fd, void* buf, size_t count, off_t offset, ssize_t* out_bytes_read) { in PReadAll() argument 218 *out_bytes_read = bytes_read; in PReadAll() 226 ssize_t* out_bytes_read) { in ReadAll() argument 239 *out_bytes_read = bytes_read; in ReadAll() 247 ssize_t* out_bytes_read) { in PReadAll() argument 251 auto success = ReadAll(fd, buf, count, offset, out_bytes_read); in PReadAll()
|