HomeSort by relevance Sort by last modified time
    Searched refs:Whence (Results 1 - 20 of 20) sorted by null

  /art/compiler/
output_stream.h 29 enum Whence {
47 virtual off_t Seek(off_t offset, Whence whence) = 0;
file_output_stream.h 34 virtual off_t Seek(off_t offset, Whence whence);
buffered_output_stream.h 36 virtual off_t Seek(off_t offset, Whence whence);
file_output_stream.cc 32 off_t FileOutputStream::Seek(off_t offset, Whence whence) {
33 return lseek(file_->Fd(), offset, static_cast<int>(whence));
vector_output_stream.cc 26 off_t VectorOutputStream::Seek(off_t offset, Whence whence) {
27 CHECK(whence == kSeekSet || whence == kSeekCurrent || whence == kSeekEnd) << whence;
29 switch (whence) {
buffered_output_stream.cc 52 off_t BufferedOutputStream::Seek(off_t offset, Whence whence) {
56 return out_->Seek(offset, whence);
vector_output_stream.h 48 off_t Seek(off_t offset, Whence whence);
  /external/chromium_org/net/base/
file_stream.h 71 virtual int Seek(base::File::Whence whence, int64 offset,
file_stream_context.h 94 void Seek(base::File::Whence whence,
151 IOResult SeekFileImpl(base::File::Whence whence, int64 offset);
mock_file_stream.h 31 virtual int Seek(base::File::Whence whence, int64 offset,
file_stream.cc 46 int FileStream::Seek(base::File::Whence whence,
52 context_->Seek(whence, offset, callback);
file_stream_context_posix.cc 81 base::File::Whence whence,
83 int64 res = file_.Seek(whence, offset);
file_stream_context_win.cc 105 base::File::Whence whence,
108 result.QuadPart = file_.Seek(whence, offset);
mock_file_stream.cc 36 int MockFileStream::Seek(base::File::Whence whence, int64 offset,
42 return FileStream::Seek(whence, offset, wrapped_callback);
file_stream_context.cc 117 void FileStream::Context::Seek(base::File::Whence whence,
126 &Context::SeekFileImpl, base::Unretained(this), whence, offset),
  /external/chromium_org/base/files/
file.h 120 enum Whence {
206 // defined by |whence|. Returns the resultant current position in the file
208 int64 Seek(Whence whence, int64 offset);
file_win.cc 16 // Make sure our Whence mappings match the system headers.
124 int64 File::Seek(Whence whence, int64 offset) {
130 DWORD move_method = static_cast<DWORD>(whence);
file_posix.cc 25 // Make sure our Whence mappings match the system headers.
278 int64 File::Seek(Whence whence, int64 offset) {
285 static_cast<int>(whence));
289 static_cast<int>(whence));
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 28 static void exitWithError(const Twine &Message, StringRef Whence = "") {
30 if (!Whence.empty())
31 errs() << Whence << ": ";
  /external/clang/lib/StaticAnalyzer/Checkers/
StreamChecker.cpp 263 // Check the legality of the 'whence' argument of 'fseek'.
264 SVal Whence = state->getSVal(CE->getArg(2), C.getLocationContext());
265 Optional<nonloc::ConcreteInt> CI = Whence.getAs<nonloc::ConcreteInt>();
277 new BuiltinBug(this, "Illegal whence argument",
278 "The whence argument to fseek() should be "

Completed in 3469 milliseconds