/third_party/ltp/testcases/kernel/syscalls/lseek/ |
D | lseek11.c | 69 {0, 0, SEEK_DATA, "data01", 6}, /* SEEK_DATA from starting of file*/ 70 {0, 4, SEEK_DATA, "01suffix", 8}, /* SEEK_DATA from maddle of the first data */ 75 …{1, 0, SEEK_DATA, "data02", 6}, /* SEEK_DATA from the starting of the first … 76 …{UNIT_BLOCKS, -1, SEEK_DATA, "data02", 6}, /* SEEK_DATA from the tail of the first hole… 77 …{UNIT_BLOCKS, 0, SEEK_DATA, "data02", 6}, /* SEEK_DATA from the starting of the second… 78 …{UNIT_BLOCKS, 4, SEEK_DATA, "02suffix", 8}, /* SEEK_DATA from middle of the second data … 82 …{UNIT_BLOCKS + 1, 128, SEEK_DATA, "data03", 6}, /* SEEK_DATA from middle of the second hole … 105 pos = lseek(fd, 0, SEEK_DATA); in get_blocksize() 121 pos = SAFE_LSEEK(fd, 0, SEEK_DATA); in get_blocksize() 206 n, (tp->whence == SEEK_DATA) ? "SEEK_DATA" : "SEEK_HOLE", in test_lseek() [all …]
|
/third_party/ltp/include/lapi/ |
D | seek.h | 11 #ifndef SEEK_DATA 12 # define SEEK_DATA 3 macro
|
/third_party/toybox/lib/ |
D | portability.h | 67 #ifndef SEEK_DATA 68 #define SEEK_DATA 3 macro
|
/third_party/ltp/testcases/kernel/logging/kmsg/ |
D | kmsg01.c | 528 #ifdef SEEK_DATA in test_seek() 535 if (lseek(fd, 0, SEEK_DATA) == -1) in test_seek()
|
/third_party/toybox/toys/lsb/ |
D | dmesg.c | 139 lseek(fd, 0, SEEK_DATA); in dmesg_main()
|
/third_party/FreeBSD/ |
D | RELNOTES | 289 - lseek(SEEK_DATA/SEEK_HOLE) 354 holes will have a trivial implementation of lseek(SEEK_DATA/SEEK_HOLE). 358 -1 with errno set to ENOTTY for SEEK_DATA/SEEK_HOLE on files in 360 r351372 maps ENOTTY to EINVAL for lseek(SEEK_DATA/SEEK_HOLE) for
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | unistd.h | 19 #define SEEK_DATA 3 macro
|
/third_party/musl/porting/linux/user/include/ |
D | unistd.h | 17 #define SEEK_DATA 3 macro
|
/third_party/musl/include/ |
D | unistd.h | 18 #define SEEK_DATA 3 macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | unistd.h | 19 #define SEEK_DATA 3 macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | unistd.h | 19 #define SEEK_DATA 3 macro
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | unistd.h | 17 #define SEEK_DATA 3 macro
|
/third_party/toybox/toys/pending/ |
D | strace.c | 383 print_bitmask(0, v, "SEEK_SET", C(SEEK_CUR), C(SEEK_END), C(SEEK_DATA),
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | dragonfly.txt | 869 SEEK_DATA
|
D | freebsd.txt | 1081 SEEK_DATA
|
D | apple.txt | 1267 SEEK_DATA
|
D | linux.txt | 2146 SEEK_DATA
|
D | android.txt | 2060 SEEK_DATA
|
/third_party/python/Modules/_io/ |
D | bufferedio.c | 1232 #ifdef SEEK_DATA in _io__Buffered_seek_impl() 1233 && (whence != SEEK_DATA) in _io__Buffered_seek_impl()
|
/third_party/toybox/toys/posix/ |
D | tar.c | 316 if (lo == st->st_size || (ld = lseek(fd, lo, SEEK_DATA)) < lo) break; in add_to_tar()
|
/third_party/python/Lib/test/ |
D | test_posix.py | 1446 self.assertEqual(i, os.lseek(fno, i, os.SEEK_DATA)) 1448 self.assertRaises(OSError, os.lseek, fno, size, os.SEEK_DATA)
|
/third_party/python/Lib/ |
D | _pyio.py | 24 valid_seek_flags.add(os.SEEK_DATA)
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/ |
D | mod.rs | 552 pub const SEEK_DATA: ::c_int = 3; constant
|
/third_party/rust/crates/nix/src/ |
D | unistd.rs | 1114 SeekData = libc::SEEK_DATA,
|
/third_party/python/Doc/library/ |
D | io.rst | 420 :data:`os.SEEK_HOLE` or :data:`os.SEEK_DATA`. The valid values
|