Home
last modified time | relevance | path

Searched refs:SEEK_DATA (Results 1 – 25 of 48) sorted by relevance

12

/third_party/ltp/testcases/kernel/syscalls/lseek/
Dlseek11.c69 {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/
Dseek.h11 #ifndef SEEK_DATA
12 # define SEEK_DATA 3 macro
/third_party/toybox/lib/
Dportability.h67 #ifndef SEEK_DATA
68 #define SEEK_DATA 3 macro
/third_party/ltp/testcases/kernel/logging/kmsg/
Dkmsg01.c528 #ifdef SEEK_DATA in test_seek()
535 if (lseek(fd, 0, SEEK_DATA) == -1) in test_seek()
/third_party/toybox/toys/lsb/
Ddmesg.c139 lseek(fd, 0, SEEK_DATA); in dmesg_main()
/third_party/FreeBSD/
DRELNOTES289 - 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/
Dunistd.h19 #define SEEK_DATA 3 macro
/third_party/musl/porting/linux/user/include/
Dunistd.h17 #define SEEK_DATA 3 macro
/third_party/musl/include/
Dunistd.h18 #define SEEK_DATA 3 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dunistd.h19 #define SEEK_DATA 3 macro
/third_party/musl/porting/uniproton/kernel/include/
Dunistd.h19 #define SEEK_DATA 3 macro
/third_party/musl/porting/liteos_a/kernel/include/
Dunistd.h17 #define SEEK_DATA 3 macro
/third_party/toybox/toys/pending/
Dstrace.c383 print_bitmask(0, v, "SEEK_SET", C(SEEK_CUR), C(SEEK_END), C(SEEK_DATA),
/third_party/rust/crates/libc/libc-test/semver/
Ddragonfly.txt869 SEEK_DATA
Dfreebsd.txt1081 SEEK_DATA
Dapple.txt1267 SEEK_DATA
Dlinux.txt2146 SEEK_DATA
Dandroid.txt2060 SEEK_DATA
/third_party/python/Modules/_io/
Dbufferedio.c1232 #ifdef SEEK_DATA in _io__Buffered_seek_impl()
1233 && (whence != SEEK_DATA) in _io__Buffered_seek_impl()
/third_party/toybox/toys/posix/
Dtar.c316 if (lo == st->st_size || (ld = lseek(fd, lo, SEEK_DATA)) < lo) break; in add_to_tar()
/third_party/python/Lib/test/
Dtest_posix.py1446 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.py24 valid_seek_flags.add(os.SEEK_DATA)
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/
Dmod.rs552 pub const SEEK_DATA: ::c_int = 3; constant
/third_party/rust/crates/nix/src/
Dunistd.rs1114 SeekData = libc::SEEK_DATA,
/third_party/python/Doc/library/
Dio.rst420 :data:`os.SEEK_HOLE` or :data:`os.SEEK_DATA`. The valid values

12