/third_party/ltp/testcases/kernel/syscalls/lseek/ |
D | lseek11.c | 71 {0, 0, SEEK_HOLE, "", 1023}, /* SEEK_HOLE from starting of file */ 72 {0, 4, SEEK_HOLE, "", 1023}, /* SEEK_HOLE from maddle of the first data */ 73 …{1, 0, SEEK_HOLE, "", 1023}, /* SEEK_HOLE from the starting of the first … 74 {1, 128, SEEK_HOLE, "", 1023}, /* SEEK_HOLE from maddle of the first hole */ 79 …{UNIT_BLOCKS, 0, SEEK_HOLE, "", 1023}, /* SEEK_HOLE from the starting of the second… 80 …{UNIT_BLOCKS, 4, SEEK_HOLE, "", 1023}, /* SEEK_HOLE from middle of the second data … 81 …{UNIT_BLOCKS + 1, 128, SEEK_HOLE, "", 1023}, /* SEEK_HOLE from middle of the second hole … 83 {FILE_BLOCKS, -128, SEEK_HOLE, NULL, 0}, /* SEEK_HOLE from no hole pass offset*/ 170 SAFE_LSEEK(fd, 0, SEEK_HOLE); in setup()
|
/third_party/ltp/include/lapi/ |
D | seek.h | 15 #ifndef SEEK_HOLE 16 # define SEEK_HOLE 4 macro
|
/third_party/toybox/lib/ |
D | portability.h | 70 #ifndef SEEK_HOLE 71 #define SEEK_HOLE 4 macro
|
/third_party/ltp/testcases/kernel/syscalls/fallocate/ |
D | fallocate04.c | 121 off_t ret = lseek(fd, 0, SEEK_HOLE); in test02()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | unistd.h | 20 #define SEEK_HOLE 4 macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | unistd.h | 20 #define SEEK_HOLE 4 macro
|
/third_party/musl/include/ |
D | unistd.h | 18 #define SEEK_HOLE 4 macro
|
/third_party/musl/porting/linux/user/include/ |
D | unistd.h | 18 #define SEEK_HOLE 4 macro
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | unistd.h | 18 #define SEEK_HOLE 4 macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | unistd.h | 20 #define SEEK_HOLE 4 macro
|
/third_party/toybox/toys/pending/ |
D | strace.c | 384 C(SEEK_HOLE), 0);
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | dragonfly.txt | 870 SEEK_HOLE
|
D | freebsd.txt | 1082 SEEK_HOLE
|
D | apple.txt | 1268 SEEK_HOLE
|
D | linux.txt | 2147 SEEK_HOLE
|
D | android.txt | 2062 SEEK_HOLE
|
/third_party/python/Modules/_io/ |
D | bufferedio.c | 1229 #ifdef SEEK_HOLE in _io__Buffered_seek_impl() 1230 && (whence != SEEK_HOLE) in _io__Buffered_seek_impl()
|
/third_party/toybox/toys/posix/ |
D | tar.c | 309 while ((lo = lseek(fd, ld, SEEK_HOLE)) != -1) { in add_to_tar()
|
/third_party/python/Lib/test/ |
D | test_posix.py | 1447 self.assertLessEqual(size, os.lseek(fno, i, os.SEEK_HOLE)) 1449 self.assertRaises(OSError, os.lseek, fno, size, os.SEEK_HOLE)
|
/third_party/python/Lib/ |
D | _pyio.py | 23 valid_seek_flags.add(os.SEEK_HOLE)
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/ |
D | mod.rs | 553 pub const SEEK_HOLE: ::c_int = 4; constant
|
/third_party/rust/crates/nix/src/ |
D | unistd.rs | 1125 SeekHole = libc::SEEK_HOLE
|
/third_party/rust/crates/libc/src/unix/solarish/ |
D | mod.rs | 1273 pub const SEEK_HOLE: ::c_int = 4; constant
|
/third_party/rust/crates/libc/src/unix/linux_like/android/ |
D | mod.rs | 2743 pub const SEEK_HOLE: ::c_int = 4; constant
|
/third_party/python/Doc/library/ |
D | io.rst | 420 :data:`os.SEEK_HOLE` or :data:`os.SEEK_DATA`. The valid values
|