| H A D | test_syscall.c | 114 static int ts_pread(int fd, void *aBuf, size_t nBuf, off_t off); 120 static int ts_pwrite(int fd, const void *aBuf, size_t nBuf, off_t 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() 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() 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 [all …]
|