HomeSort by relevance Sort by last modified time
    Searched refs:__whence (Results 1 - 5 of 5) sorted by null

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
stdio_sync_filebuf.h 159 int __whence; local
161 __whence = SEEK_SET;
163 __whence = SEEK_CUR;
165 __whence = SEEK_END;
167 if (!fseeko64(_M_file, __off, __whence))
170 if (!fseek(_M_file, __off, __whence))
  /external/stlport/stlport/stl/
_fstream.c 292 ios_base::seekdir __whence,
300 if (!_M_seek_init(__off != 0 || __whence != ios_base::cur))
304 if (__whence == ios_base::beg || __whence == ios_base::end)
305 return _M_seek_return(_M_base._M_seek(_M_width * __off, __whence),
309 _STLP_ASSERT(__whence == ios_base::cur)
311 return _M_seek_return(_M_base._M_seek(_M_width * __off, __whence),
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_fstream.c 292 ios_base::seekdir __whence,
300 if (!_M_seek_init(__off != 0 || __whence != ios_base::cur))
304 if (__whence == ios_base::beg || __whence == ios_base::end)
305 return _M_seek_return(_M_base._M_seek(_M_width * __off, __whence),
309 _STLP_ASSERT(__whence == ios_base::cur)
311 return _M_seek_return(_M_base._M_seek(_M_width * __off, __whence),
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
stdio.h 718 extern int fseek (FILE *__stream, long int __off, int __whence);
742 extern int fseeko (FILE *__stream, __off_t __off, int __whence);
751 (FILE *__stream, __off64_t __off, int __whence),
787 extern int fseeko64 (FILE *__stream, __off64_t __off, int __whence);
unistd.h 301 extern __off_t lseek (int __fd, __off_t __offset, int __whence) __THROW;
305 (int __fd, __off64_t __offset, int __whence),
312 extern __off64_t lseek64 (int __fd, __off64_t __offset, int __whence)
    [all...]

Completed in 381 milliseconds