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

1 2 3

  /bionic/libc/arch-arm/syscalls/
lseek.S 5 ENTRY(lseek) function
16 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
39 END(lseek)
  /bionic/libc/arch-x86_64/syscalls/
lseek.S 5 ENTRY(lseek) function
15 END(lseek)
17 ALIAS_SYMBOL(lseek64, lseek)
  /external/libjpeg-turbo/md5/
md5hl.c 20 #define lseek _lseek macro
84 if (lseek(f, ofs, SEEK_SET) < 0)
  /external/e2fsprogs/include/nonunix/
unistd.h 25 #define lseek _lseek macro
  /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 lseek; local
212 lseek = ((sizeof(fw) + (fw.text_size + fw.data_size) * 4 + 0xfff) & ~0xfff);
213 fseek(fp, lseek, SEEK_SET);
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 417 off_t lseek (int a, off_t o, int d) function
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.cc 58 // Win32 lseek is broken: If invoked on a non-seekable file descriptor, its
60 #define lseek(fd, offset, origin) ((off_t)-1) macro
158 lseek(file_, count, SEEK_CUR) != (off_t)-1) {
  /external/swiftshader/third_party/LLVM/tools/gold/
gold-plugin.cpp 38 # define lseek _lseek macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
io.h 327 long __cdecl lseek(int _FileHandle,long _Offset,int _Origin) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
341 #define lseek lseek64 macro
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
SysCalls.c 493 The lseek() function repositions the offset of the file descriptor fildes
495 fildes must be an open file descriptor. lseek() repositions the file
506 The lseek() function allows the file offset to be set beyond the end of
518 @return Upon successful completion, lseek() returns the resulting offset
524 lseek (int fd, __off_t offset, int how) function
    [all...]
  /external/ImageMagick/MagickCore/
nt-base.h 155 #if !defined(lseek)
156 # define lseek _lseeki64 macro
159 #if !defined(lseek)
160 # define lseek _lseek macro
  /external/curl/lib/
curl_setup.h 356 # undef lseek macro
357 # define lseek(fdes,offset,whence) _lseeki64(fdes, offset, whence) macro
375 # undef lseek macro
376 # define lseek(fdes,offset,whence) _lseek(fdes, (long)offset, whence) macro
  /frameworks/base/core/java/android/util/jar/
StrictJarFile.java 465 Os.lseek(fd, offset, OsConstants.SEEK_SET);
  /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...]
  /external/valgrind/coregrind/
m_libcfile.c 284 Off64T VG_(lseek) ( Int fd, Off64T offset, Int whence ) function
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
ExifInterfaceTest.java 387 Os.lseek(fd, 0, OsConstants.SEEK_SET);
395 Os.lseek(fd, 0, OsConstants.SEEK_SET);
401 Os.lseek(fd, 0, OsConstants.SEEK_SET);
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 185 @Override public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { method in class:BlockGuardOs
187 return os.lseek(fd, offset, whence);
  /libcore/ojluni/src/main/java/java/io/
RandomAccessFile.java 585 return Libcore.os.lseek(fd, 0L, SEEK_CUR);
615 Libcore.os.lseek(fd, pos, SEEK_SET);
    [all...]

Completed in 1182 milliseconds

1 2 3