Home
last modified time | relevance | path

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

/packages/modules/adb/
Dsysdeps.h105 extern int adb_pread(borrowed_fd fd, void* buf, int len, off64_t offset);
522 static inline int adb_pread(borrowed_fd fd, void* buf, size_t len, off64_t offset) { in adb_pread() function
Dsysdeps_win32.cpp459 int adb_pread(borrowed_fd fd, void* buf, int len, off64_t offset) { in adb_pread() function
/packages/modules/adb/client/
Dincremental_server.cpp162 bytes_read = adb_pread(fd_, buf, kBlockSize, offsetStart); in ReadDataBlock()
168 bytes_read = adb_pread(tree_fd_, buf, kBlockSize, offsetStart); in ReadTreeBlock()
Dincremental_utils.cpp139 if (adb_pread(fd, &t, sizeof(T), offset) != sizeof(T)) { in valueAt()
/packages/modules/adb/fastdeploy/deploypatchgenerator/
Dapk_archive.cpp47 if (auto err = adb_pread(fd.get(), buffer_.data(), length, offset); size_t(err) != length) { in FileRegion()