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);
  /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/chromium_org/native_client_sdk/src/examples/demo/nacl_io/
handlers.c 325 * 2: An integer representing the whence parameter of standard fseek.
326 * whence = 0: seek from the beginning of the file
327 * whence = 1: seek from the current file position
328 * whence = 2: seek from the end of the file
343 int whence; local
354 whence = strtol(params[2], NULL, 10);
362 result = fseek(file, offset, 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 562 milliseconds