Home
last modified time | relevance | path

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

/system/update_engine/common/
Dutils.cc145 char* c_buf = static_cast<char*>(buf); in ReadAll() local
149 ssize_t rc = HANDLE_EINTR(read(fd, c_buf + bytes_read, count - bytes_read)); in ReadAll()
173 const char* c_buf = static_cast<const char*>(buf); in WriteAll() local
176 ssize_t rc = write(fd, c_buf + bytes_written, count - bytes_written); in WriteAll()
184 const char* c_buf = static_cast<const char*>(buf); in PWriteAll() local
190 c_buf + bytes_written, in PWriteAll()
206 const char* c_buf = static_cast<const char*>(buf); in WriteAll() local
209 ssize_t rc = fd->Write(c_buf + bytes_written, count - bytes_written); in WriteAll()
227 char* c_buf = static_cast<char*>(buf); in PReadAll() local
231 pread(fd, c_buf + bytes_read, count - bytes_read, offset + bytes_read); in PReadAll()
[all …]