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

  /external/chromium_org/net/base/
file_stream_whence.h 12 enum Whence {
file_stream.h 72 virtual int Seek(Whence whence, int64 offset,
file_stream_context.h 99 void SeekAsync(Whence whence,
170 IOResult SeekFileImpl(Whence whence, int64 offset);
mock_file_stream.h 31 virtual int Seek(net::Whence whence, int64 offset,
file_stream.cc 46 int FileStream::Seek(Whence whence,
52 context_->SeekAsync(whence, offset, callback);
file_stream_context_posix.cc 43 // Make sure our Whence mappings match the system headers.
103 FileStream::Context::IOResult FileStream::Context::SeekFileImpl(Whence whence,
106 static_cast<int>(whence));
file_stream_context_win.cc 18 // Ensure that we can just use our Whence values directly.
114 FileStream::Context::IOResult FileStream::Context::SeekFileImpl(Whence whence,
118 DWORD move_method = static_cast<DWORD>(whence);
mock_file_stream.cc 36 int MockFileStream::Seek(Whence whence, int64 offset,
42 return FileStream::Seek(whence, offset, wrapped_callback);
file_stream_context.cc 115 void FileStream::Context::SeekAsync(Whence whence,
124 &Context::SeekFileImpl, base::Unretained(this), whence, offset),
  /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/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 119 int64 File::Seek(Whence whence, int64 offset) {
127 DWORD move_method = static_cast<DWORD>(whence);
file_posix.cc 27 // Make sure our Whence mappings match the system headers.
280 int64 File::Seek(Whence whence, int64 offset) {
287 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 313 milliseconds