HomeSort by relevance Sort by last modified time
    Searched defs:lseek64 (Results 1 - 14 of 14) sorted by null

  /bionic/tools/versioner/tests/preprocessor_file_offset_bits/expected/
foo.h 35 off_t lseek(int __fd, off_t __offset, int __whence) __RENAME(lseek64); variable
  /bionic/tools/versioner/tests/preprocessor_file_offset_bits/headers/
foo.h 31 off_t lseek(int __fd, off_t __offset, int __whence) __RENAME(lseek64); variable
  /external/gptfdisk/
support.h 14 // Darwin (Mac OS) & FreeBSD: disk IOCTLs are different, and there is no lseek64
16 #define lseek64 lseek macro
  /system/core/libsparse/
img2simg.c 37 #define lseek64 lseek macro
89 len = lseek64(in, 0, SEEK_END);
90 lseek64(in, 0, SEEK_SET);
append2simg.c 37 #define lseek64 lseek macro
40 #define lseek64 lseek macro
97 input_len = lseek64(input, 0, SEEK_END);
105 lseek64(input, 0, SEEK_SET);
120 lseek64(output, 0, SEEK_SET);
sparse_read.cpp 42 #define lseek64 lseek macro
108 lseek64(fd, len, SEEK_CUR);
298 lseek64(fd, sparse_header.file_hdr_sz - SPARSE_HEADER_LEN, SEEK_CUR);
311 lseek64(fd, sparse_header.chunk_hdr_sz - CHUNK_HEADER_LEN, SEEK_CUR);
314 offset = lseek64(fd, 0, SEEK_CUR);
435 ret = lseek64(fd, 0, SEEK_SET);
464 len = lseek64(fd, 0, SEEK_END);
469 lseek64(fd, 0, SEEK_SET);
output_file.c 45 #define lseek64 lseek macro
131 ret = lseek64(outn->fd, cnt, SEEK_CUR);
133 error_errno("lseek64");
730 pos = lseek64(fd, offset, SEEK_SET);
  /system/core/libutils/include/utils/
Compat.h 28 static inline off64_t lseek64(int fd, off64_t offset, int whence) { function
  /bionic/libc/bionic/
legacy_32_bit_support.cpp 61 // For lseek64 we need to use the llseek system call which splits the off64_t in two and
63 off64_t lseek64(int fd, off64_t off, int whence) { function
  /libcore/ojluni/src/main/native/
FileChannelImpl.c 52 #define lseek64 lseek macro
138 result = lseek64(fd, 0, SEEK_CUR);
140 result = lseek64(fd, offset, SEEK_SET);
  /bionic/libc/include/
unistd.h 171 off_t lseek(int __fd, off_t __offset, int __whence) __RENAME(lseek64); variable
186 off64_t lseek64(int __fd, off64_t __offset, int __whence);
  /external/f2fs-tools/lib/
libf2fs_io.c 60 static inline off64_t lseek64(int fd, __u64 offset, int set) function
73 if (lseek64(c.kd, (off64_t)offset, SEEK_SET) < 0)
168 if (lseek64(fd, (off64_t)offset, SEEK_SET) < 0)
207 if (lseek64(fd, (off64_t)offset, SEEK_SET) < 0)
221 if (lseek64(c.dump_fd, (off64_t)offset, SEEK_SET) < 0)
242 if (lseek64(fd, (off64_t)offset, SEEK_SET) < 0)
  /external/ltp/utils/ffsb-6.0-rc2/
fh.c 41 #define lseek64 lseek macro
203 res = lseek64(fd, offset, whence);
  /system/extras/ext4_utils/include/ext4_utils/
ext4_utils.h 42 #define lseek64 lseek macro

Completed in 276 milliseconds