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

1 2

  /bionic/libc/arch-arm/syscalls/
lseek.S 5 ENTRY(lseek) function
14 END(lseek)
  /bionic/libc/arch-arm64/syscalls/
lseek.S 5 ENTRY(lseek) function
14 END(lseek)
16 ALIAS_SYMBOL(lseek64, lseek)
  /bionic/libc/arch-mips/syscalls/
lseek.S 5 ENTRY(lseek) function
19 END(lseek)
  /bionic/libc/arch-mips64/syscalls/
lseek.S 5 ENTRY(lseek) function
25 END(lseek)
27 ALIAS_SYMBOL(lseek64, lseek)
  /bionic/libc/arch-x86/syscalls/
lseek.S 5 ENTRY(lseek) function
31 END(lseek)
  /bionic/libc/arch-x86_64/syscalls/
lseek.S 5 ENTRY(lseek) function
15 END(lseek)
17 ALIAS_SYMBOL(lseek64, lseek)
  /external/e2fsprogs/include/nonunix/
unistd.h 25 #define lseek _lseek macro
  /hardware/intel/img/psb_video/fw/msvdx/
msvdx_bin.c 55 unsigned long lseek; local
  /libcore/luni/src/main/java/java/io/
FileInputStream.java 186 // Try lseek(2). That returns the new offset, but we'll throw an
188 Libcore.os.lseek(fd, byteCount, SEEK_CUR);
RandomAccessFile.java 225 return Libcore.os.lseek(fd, 0L, SEEK_CUR);
603 Libcore.os.lseek(fd, offset, SEEK_SET);
  /frameworks/base/drm/java/android/drm/
DrmOutputStream.java 72 Os.lseek(mFd, status.offset, SEEK_SET);
  /hardware/intel/img/psb_video/fw/topazhp/
fwinfo.c 120 unsigned int i, lseek; local
212 lseek = ((sizeof(fw) + (fw.text_size + fw.data_size) * 4 + 0xfff) & ~0xfff);
213 fseek(fp, lseek, SEEK_SET);
  /hardware/intel/img/psb_video/fw/topazsc/
fwinfo.c 120 unsigned int i, lseek; local
212 lseek = ((sizeof(fw) + (fw.text_size + fw.data_size) * 4 + 0xfff) & ~0xfff);
213 fseek(fp, lseek, SEEK_SET);
  /external/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) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
io.h 321 long __cdecl lseek(int _FileHandle,long _Offset,int _Origin) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
335 #define lseek lseek64 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...]
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 161 @Override public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { method in class:BlockGuardOs
163 return os.lseek(fd, offset, whence);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xw32defs.h 38 # define lseek _lseek macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
unistd.h 310 /* Values for the WHENCE argument to lseek. */
331 extern __off_t lseek (int __fd, __off_t __offset, int __whence) __THROW;
334 extern __off64_t __REDIRECT_NTH (lseek,
338 # define lseek lseek64 macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 38 # define lseek _lseek macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
unistd.h 310 /* Values for the WHENCE argument to lseek. */
335 extern __off_t lseek (int __fd, __off_t __offset, int __whence) __THROW;
338 extern __off64_t __REDIRECT_NTH (lseek,
342 # define lseek lseek64 macro
    [all...]
  /system/core/adb/
sysdeps.h 389 return lseek(fd, pos, where);
391 #undef lseek macro
392 #define lseek ___xxx_lseek macro
  /external/valgrind/coregrind/
m_libcfile.c 260 Off64T VG_(lseek) ( Int fd, Off64T offset, Int whence ) function
    [all...]
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 264 return Libcore.os.lseek(fd, 0L, SEEK_CUR);
276 Libcore.os.lseek(fd, newPosition, SEEK_SET);

Completed in 4438 milliseconds

1 2