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

1 2

  /bionic/libc/arch-arm/syscalls/
lseek.S 6 ENTRY(lseek) function
15 END(lseek)
  /bionic/libc/arch-mips/syscalls/
lseek.S 4 .globl lseek
6 .ent lseek
8 lseek: label
22 .end lseek
  /bionic/libc/arch-x86/syscalls/
lseek.S 6 ENTRY(lseek) function
27 END(lseek)
  /external/chromium_org/net/base/
file_stream_context_posix.cc 32 #define lseek lseek64 macro
149 off_t res = lseek(file_, static_cast<off_t>(offset),
  /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);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.cc 57 // Win32 lseek is broken: If invoked on a non-seekable file descriptor, its
59 #define lseek(fd, offset, origin) ((off_t)-1) macro
157 lseek(file_, count, SEEK_CUR) != (off_t)-1) {
  /external/llvm/tools/gold/
gold-plugin.cpp 36 # 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
  /external/bison/darwin-lib/
unistd.h 89 lseek(), read(), unlink(), write() in <io.h>. */
1405 # undef lseek macro
    [all...]
  /external/bison/linux-lib/
unistd.h 89 lseek(), read(), unlink(), write() in <io.h>. */
1405 # undef lseek macro
    [all...]
  /external/chromium_org/ppapi/tests/
test_file_io.cc 35 # define lseek _lseek macro
131 if (lseek(fd, 0, SEEK_SET) < 0)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.h 374 inline off_t lseek(int fd, off_t offset, int whence) { function
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.h 371 inline off_t lseek(int fd, off_t offset, int whence) { function
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 260 return Libcore.os.lseek(fd, 0L, SEEK_CUR);
272 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

Completed in 1313 milliseconds

1 2