Searched refs:whence (Results 1 – 5 of 5) 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/cxx-stl/llvm-libc++/libcxx/include/ |
D | cstdio | 87 int fseek(FILE* stream, long offset, int whence);
|