Home
last modified time | relevance | path

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

/external/ltp/testcases/kernel/syscalls/lseek/
Dlseek11.c84 {0, 0, SEEK_DATA, "data01", 6}, /* SEEK_DATA from starting of file*/
85 {0, 4, SEEK_DATA, "01suffix", 8}, /* SEEK_DATA from maddle of the first data */
90 …{1, 0, SEEK_DATA, "data02", 6}, /* SEEK_DATA from the starting of the first …
91 …{UNIT_BLOCKS, -1, SEEK_DATA, "data02", 6}, /* SEEK_DATA from the tail of the first hole…
92 …{UNIT_BLOCKS, 0, SEEK_DATA, "data02", 6}, /* SEEK_DATA from the starting of the second…
93 …{UNIT_BLOCKS, 4, SEEK_DATA, "02suffix", 8}, /* SEEK_DATA from middle of the second data …
97 …{UNIT_BLOCKS + 1, 128, SEEK_DATA, "data03", 6}, /* SEEK_DATA from middle of the second hole …
120 pos = lseek(fd, 0, SEEK_DATA); in get_blocksize()
136 pos = SAFE_LSEEK(fd, 0, SEEK_DATA); in get_blocksize()
221 n, (tp->whence == SEEK_DATA) ? "SEEK_DATA" : "SEEK_HOLE", in test_lseek()
[all …]
/external/ltp/include/lapi/
Dseek.h23 #ifndef SEEK_DATA
24 # define SEEK_DATA 3 macro
/external/strace/xlat/
Dwhence_codes.h15 #if defined(SEEK_DATA) || (defined(HAVE_DECL_SEEK_DATA) && HAVE_DECL_SEEK_DATA)
16 XLAT(SEEK_DATA),
Dwhence_codes.in4 SEEK_DATA
/external/toybox/lib/
Dportability.h49 #ifndef SEEK_DATA
50 #define SEEK_DATA 3 macro
/external/ltp/testcases/kernel/logging/kmsg/
Dkmsg01.c568 #ifdef SEEK_DATA in test_seek()
575 if (lseek(fd, 0, SEEK_DATA) == -1) in test_seek()
/external/toybox/toys/lsb/
Ddmesg.c140 lseek(fd, 0, SEEK_DATA); in dmesg_main()
/external/kernel-headers/original/uapi/linux/
Dfs.h37 #define SEEK_DATA 3 /* seek to the next data */ macro
/external/e2fsprogs/misc/
Dcreate_inode.c458 #if defined(SEEK_DATA) && defined(SEEK_HOLE)
468 data = lseek(fd, data, SEEK_DATA); in try_lseek_copy()
571 #if defined(SEEK_DATA) && defined(SEEK_HOLE) in copy_file()
/external/strace/
DChangeLog32030 Add SEEK_DATA and SEEK_HOLE to them.