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

  /bionic/libc/arch-arm/syscalls/
lseek.S 5 ENTRY(lseek) function
14 END(lseek)
  /bionic/libc/arch-x86/syscalls/
lseek.S 5 .type lseek, @function
6 .globl lseek
9 lseek: label
  /external/e2fsprogs/include/nonunix/
unistd.h 25 #define lseek _lseek macro
  /libcore/luni/src/main/java/java/io/
FileInputStream.java 188 // Try lseek(2). That returns the new offset, but we'll throw an
190 Libcore.os.lseek(fd, byteCount, SEEK_CUR);
RandomAccessFile.java 223 return Libcore.os.lseek(fd, 0L, SEEK_CUR);
604 Libcore.os.lseek(fd, offset, SEEK_SET);
  /external/llvm/tools/gold/
gold-plugin.cpp 38 # define lseek _lseek macro
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.cc 56 // Win32 lseek is broken: If invoked on a non-seekable file descriptor, its
58 #define lseek(fd, offset, origin) ((off_t)-1) macro
156 lseek(file_, count, SEEK_CUR) != (off_t)-1) {
  /ndk/sources/host-tools/sed-4.2.1/lib/
unistd.in.h 509 <http://www.opengroup.org/susv3xsh/lseek.html>. */
510 # define lseek rpl_lseek macro
511 extern off_t lseek (int fd, off_t offset, int whence);
514 # undef lseek macro
515 # define lseek(f,o,w) \ macro
516 (GL_LINK_WARNING ("lseek does not fail with ESPIPE on pipes on some " \
517 "systems - use gnulib module lseek for portability"), \
518 lseek (f, o, w))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
unistd.h 280 /* Values for the WHENCE argument to lseek. */
301 extern __off_t lseek (int __fd, __off_t __offset, int __whence) __THROW;
304 extern __off64_t __REDIRECT_NTH (lseek,
308 # define lseek lseek64 macro
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
unistd.h 280 /* Values for the WHENCE argument to lseek. */
301 extern __off_t lseek (int __fd, __off_t __offset, int __whence) __THROW;
304 extern __off64_t __REDIRECT_NTH (lseek,
308 # define lseek lseek64 macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
unistd.h 280 /* Values for the WHENCE argument to lseek. */
301 extern __off_t lseek (int __fd, __off_t __offset, int __whence) __THROW;
304 extern __off64_t __REDIRECT_NTH (lseek,
308 # define lseek lseek64 macro
    [all...]
  /bootable/recovery/minadbd/
sysdeps.h 383 return lseek(fd, pos, where);
385 #undef lseek macro
386 #define lseek ___xxx_lseek macro
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 251 return Libcore.os.lseek(fd, 0L, SEEK_CUR);
263 Libcore.os.lseek(fd, newPosition, SEEK_SET);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xw32defs.h 49 #define lseek _lseek macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xw32defs.h 40 #define lseek _lseek macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 49 #define lseek _lseek macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 40 #define lseek _lseek macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 49 #define lseek _lseek macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 40 #define lseek _lseek macro
  /system/core/adb/
sysdeps.h 371 return lseek(fd, pos, where);
373 #undef lseek macro
374 #define lseek ___xxx_lseek macro
  /external/valgrind/main/coregrind/
m_libcfile.c 213 Off64T VG_(lseek) ( Int fd, Off64T offset, Int whence ) function
594 OffT off = VG_(lseek)( fd, offset, VKI_SEEK_SET);
  /libcore/luni/src/main/java/libcore/io/
Os.java 71 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; method in interface:Os
Posix.java 73 public native long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; method in class:Posix
ForwardingOs.java 79 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); } method in class:ForwardingOs
  /external/qemu/
qemu-common.h 104 #define lseek _lseeki64 macro

Completed in 1426 milliseconds