Searched refs:whence (Results 1 – 6 of 6) sorted by relevance
/ndk/sources/cxx-stl/stlport/src/ |
D | stdio_streambuf.cpp | 78 int whence; in seekoff() local 81 whence = SEEK_SET; in seekoff() 84 whence = SEEK_CUR; in seekoff() 87 whence = SEEK_END; in seekoff() 93 if (off <= numeric_limits<off_type>::max() && FSEEK(_M_file, off, whence) == 0) { in seekoff()
|
/ndk/sources/cxx-stl/stlport/src/details/ |
D | fstream_stdio.cpp | 344 int whence; in _M_seek() local 350 whence = SEEK_SET; in _M_seek() 353 whence = SEEK_CUR; in _M_seek() 358 whence = SEEK_END; in _M_seek() 364 if ( FSEEK(_M_file, offset, whence) == 0 ) { in _M_seek()
|
D | fstream_unistd.cpp | 288 int whence; in _M_seek() local 294 whence = SEEK_SET; in _M_seek() 297 whence = SEEK_CUR; in _M_seek() 302 whence = SEEK_END; in _M_seek() 308 return LSEEK(_M_file_id, offset, whence); in _M_seek()
|
D | fstream_win32io.cpp | 549 int whence; in _M_seek() local 555 whence = FILE_BEGIN; in _M_seek() 558 whence = FILE_CURRENT; in _M_seek() 563 whence = FILE_END; in _M_seek() 571 li.LowPart = SetFilePointer(_M_file_id, li.LowPart, &li.HighPart, whence); in _M_seek()
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | stdio.in.h | 323 extern int fseeko (FILE *fp, off_t offset, int whence); 324 # define fseek(fp, offset, whence) fseeko (fp, (off_t)(offset), whence) 335 extern int rpl_fseek (FILE *fp, long offset, int whence);
|
D | unistd.in.h | 511 extern off_t lseek (int fd, off_t offset, int whence);
|