HomeSort by relevance Sort by last modified time
    Searched defs:whence (Results 1 - 12 of 12) 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/bluetooth/glib/glib/
giounix.c 267 int whence; local
274 whence = SEEK_SET;
277 whence = SEEK_CUR;
280 whence = SEEK_END;
283 whence = -1; /* Shut the compiler up */
296 result = lseek (unix_channel->fd, tmp_offset, whence);
  /external/strace/
desc.c 186 static const struct xlat whence[] = { variable in typeref:struct:xlat
209 tprintf(", whence=");
210 printxval(whence, fl.l_whence, "SEEK_???");
235 tprintf(", whence=");
236 printxval(whence, fl.l_whence, "SEEK_???");
file.c 442 static const struct xlat whence[] = { variable in typeref:struct:xlat
465 printxval(whence, _whence, "SEEK_???");
497 printxval(whence, tcp->u_arg[4], "SEEK_???");
532 printxval(whence, tcp->u_arg[3], "SEEK_???");
    [all...]

Completed in 1668 milliseconds