Lines Matching refs:off
114 static int ts_pread(int fd, void *aBuf, size_t nBuf, off_t off);
118 static int ts_pread64(int fd, void *aBuf, size_t nBuf, sqlite3_uint64 off);
120 static int ts_pwrite(int fd, const void *aBuf, size_t nBuf, off_t off);
121 static int ts_pwrite64(int fd, const void *aBuf, size_t nBuf, sqlite3_uint64 off);
123 static int ts_fallocate(int fd, off_t off, off_t len);
326 static int ts_pread(int fd, void *aBuf, size_t nBuf, off_t off){ in ts_pread() argument
330 return orig_pread(fd, aBuf, nBuf, off); in ts_pread()
336 static int ts_pread64(int fd, void *aBuf, size_t nBuf, sqlite3_uint64 off){ in ts_pread64() argument
340 return orig_pread64(fd, aBuf, nBuf, off); in ts_pread64()
357 static int ts_pwrite(int fd, const void *aBuf, size_t nBuf, off_t off){ in ts_pwrite() argument
361 return orig_pwrite(fd, aBuf, nBuf, off); in ts_pwrite()
367 static int ts_pwrite64(int fd, const void *aBuf, size_t nBuf, sqlite3_uint64 off){ in ts_pwrite64() argument
371 return orig_pwrite64(fd, aBuf, nBuf, off); in ts_pwrite64()
393 static int ts_fallocate(int fd, off_t off, off_t len){ in ts_fallocate() argument
397 return orig_fallocate(fd, off, len); in ts_fallocate()