HomeSort by relevance Sort by last modified time
    Searched defs:whence (Results 1 - 11 of 11) sorted by null

  /external/stlport/src/
stdio_streambuf.cpp 78 int whence; local
81 whence = SEEK_SET;
84 whence = SEEK_CUR;
87 whence = SEEK_END;
93 if (off <= numeric_limits<off_type>::max() && FSEEK(_M_file, off, whence) == 0) {
  /ndk/sources/cxx-stl/stlport/src/
stdio_streambuf.cpp 78 int whence; local
81 whence = SEEK_SET;
84 whence = SEEK_CUR;
87 whence = SEEK_END;
93 if (off <= numeric_limits<off_type>::max() && FSEEK(_M_file, off, whence) == 0) {
  /external/stlport/src/details/
fstream_unistd.cpp 288 int whence; local
294 whence = SEEK_SET;
297 whence = SEEK_CUR;
302 whence = SEEK_END;
308 return LSEEK(_M_file_id, offset, whence);
fstream_stdio.cpp 344 int whence; local
350 whence = SEEK_SET;
353 whence = SEEK_CUR;
358 whence = SEEK_END;
364 if ( FSEEK(_M_file, offset, whence) == 0 ) {
fstream_win32io.cpp 549 int whence; local
555 whence = FILE_BEGIN;
558 whence = FILE_CURRENT;
563 whence = FILE_END;
571 li.LowPart = SetFilePointer(_M_file_id, li.LowPart, &li.HighPart, whence);
  /external/webkit/Source/WebCore/platform/posix/
FileSystemPOSIX.cpp 97 int whence = SEEK_SET; local
100 whence = SEEK_SET;
103 whence = SEEK_CUR;
106 whence = SEEK_END;
111 return static_cast<long long>(lseek(handle, offset, whence));
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_unistd.cpp 288 int whence; local
294 whence = SEEK_SET;
297 whence = SEEK_CUR;
302 whence = SEEK_END;
308 return LSEEK(_M_file_id, offset, whence);
fstream_stdio.cpp 344 int whence; local
350 whence = SEEK_SET;
353 whence = SEEK_CUR;
358 whence = SEEK_END;
364 if ( FSEEK(_M_file, offset, whence) == 0 ) {
fstream_win32io.cpp 549 int whence; local
555 whence = FILE_BEGIN;
558 whence = FILE_CURRENT;
563 whence = FILE_END;
571 li.LowPart = SetFilePointer(_M_file_id, li.LowPart, &li.HighPart, whence);
  /external/strace/
desc.c 225 static const struct xlat whence[] = { variable in typeref:struct:xlat
275 tprintf(", whence=");
276 printxval(whence, fl.l_whence, "SEEK_???");
298 tprintf(", whence=");
299 printxval(whence, fl.l_whence, "SEEK_???");
file.c 587 static const struct xlat whence[] = { variable in typeref:struct:xlat
611 printxval(whence, _whence, "SEEK_???");
631 printxval(whence, _whence, "SEEK_???");
664 printxval(whence, tcp->u_arg[4], "SEEK_???");
695 printxval(whence, tcp->u_arg[argn], "SEEK_???");
    [all...]

Completed in 605 milliseconds