/external/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()
|
/external/ltp/include/lapi/ |
D | seek.h | 27 #ifndef SEEK_HOLE 28 # define SEEK_HOLE 4 macro
|
/external/strace/xlat/ |
D | whence_codes.h | 24 #if defined(SEEK_HOLE) || (defined(HAVE_DECL_SEEK_HOLE) && HAVE_DECL_SEEK_HOLE) 25 XLAT(SEEK_HOLE),
|
D | whence_codes.in | 5 SEEK_HOLE
|
/external/kernel-headers/original/uapi/linux/ |
D | fs.h | 47 #define SEEK_HOLE 4 /* seek to the next hole */ macro 48 #define SEEK_MAX SEEK_HOLE
|
/external/toybox/lib/ |
D | portability.h | 65 #ifndef SEEK_HOLE 66 #define SEEK_HOLE 4 macro
|
/external/crosvm/sys_util/src/ |
D | seek_hole.rs | 9 use libc::{lseek64, ENXIO, SEEK_DATA, SEEK_HOLE}; 46 lseek(self, offset as i64, SEEK_HOLE) in seek_hole()
|
/external/ltp/testcases/kernel/syscalls/fallocate/ |
D | fallocate04.c | 121 off_t ret = lseek(fd, 0, SEEK_HOLE); in test02()
|
/external/e2fsprogs/misc/ |
D | create_inode.c | 464 #if defined(SEEK_DATA) && defined(SEEK_HOLE) 480 hole = lseek(fd, data, SEEK_HOLE); in try_lseek_copy() 579 #if defined(SEEK_DATA) && defined(SEEK_HOLE) in copy_file()
|
/external/rust/crates/libc/src/unix/linux_like/linux/musl/ |
D | mod.rs | 317 pub const SEEK_HOLE: ::c_int = 4; constant
|
/external/python/cpython3/Modules/_io/ |
D | bufferedio.c | 1229 #ifdef SEEK_HOLE in _io__Buffered_seek_impl() 1230 && (whence != SEEK_HOLE) in _io__Buffered_seek_impl()
|
/external/rust/crates/libc/src/unix/linux_like/linux/gnu/ |
D | mod.rs | 559 pub const SEEK_HOLE: ::c_int = 4; constant
|
/external/toybox/toys/posix/ |
D | tar.c | 309 while ((lo = lseek(fd, ld, SEEK_HOLE)) != -1) { in add_to_tar()
|
/external/python/cpython3/Lib/test/ |
D | test_posix.py | 1399 self.assertLessEqual(size, os.lseek(fno, i, os.SEEK_HOLE)) 1401 self.assertRaises(OSError, os.lseek, fno, size, os.SEEK_HOLE)
|
/external/rust/crates/libc/src/unix/bsd/freebsdlike/ |
D | mod.rs | 352 pub const SEEK_HOLE: ::c_int = 4; constant
|
/external/python/cpython3/Lib/ |
D | _pyio.py | 23 valid_seek_flags.add(os.SEEK_HOLE)
|
/external/python/cpython3/Doc/library/ |
D | io.rst | 350 :data:`os.SEEK_HOLE` or :data:`os.SEEK_DATA`. The valid values
|
D | os.rst | 923 :data:`os.SEEK_HOLE` or :data:`os.SEEK_DATA`.
|
/external/python/cpython3/Modules/ |
D | posixmodule.c | 13854 #ifdef SEEK_HOLE in all_ins() 13855 if (PyModule_AddIntMacro(m, SEEK_HOLE)) return -1; in all_ins()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1691 function, such as ``os.SEEK_HOLE`` and ``os.SEEK_DATA``.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 8193 - Issue #10142: Support for SEEK_HOLE/SEEK_DATA (for example, under ZFS).
|
/external/strace/ |
D | ChangeLog | 46674 Add SEEK_DATA and SEEK_HOLE to them.
|