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

  /external/chromium_org/net/base/
file_stream_whence.h 12 enum Whence {
file_stream.h 103 virtual int Seek(Whence whence, int64 offset,
110 virtual int64 SeekSync(Whence whence, int64 offset);
mock_file_stream.cc 16 int MockFileStream::Seek(Whence whence, int64 offset,
18 return ReturnError(FileStream::Seek(whence, offset, callback));
21 int64 MockFileStream::SeekSync(Whence whence, int64 offset) {
22 return ReturnError64(FileStream::SeekSync(whence, offset));
mock_file_stream.h 32 virtual int Seek(net::Whence whence, int64 offset,
34 virtual int64 SeekSync(net::Whence whence, int64 offset) OVERRIDE;
file_stream_context.h 114 void SeekAsync(Whence whence,
117 int64 SeekSync(Whence whence, int64 offset);
191 IOResult SeekFileImpl(Whence whence, int64 offset);
file_stream.cc 113 int FileStream::Seek(Whence whence,
121 context_->SeekAsync(whence, offset, callback);
125 int64 FileStream::SeekSync(Whence whence, int64 offset) {
133 return context_->SeekSync(whence, offset);
file_stream_context.cc 127 void FileStream::Context::SeekAsync(Whence whence,
136 &Context::SeekFileImpl, base::Unretained(this), whence, offset),
146 int64 FileStream::Context::SeekSync(Whence whence, int64 offset) {
147 IOResult result = SeekFileImpl(whence, offset);
file_stream_context_posix.cc 42 // Make sure our Whence mappings match the system headers.
147 FileStream::Context::IOResult FileStream::Context::SeekFileImpl(Whence whence,
150 static_cast<int>(whence));
file_stream_context_win.cc 18 // Ensure that we can just use our Whence values directly.
179 FileStream::Context::IOResult FileStream::Context::SeekFileImpl(Whence whence,
183 DWORD move_method = static_cast<DWORD>(whence);
  /art/compiler/
output_stream.h 28 enum Whence {
46 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/net/base/
file_stream.h 24 enum Whence {
62 int64 Seek(Whence whence, int64 offset);
file_stream_posix.cc 39 // Make sure our Whence mappings match the system headers.
328 int64 FileStream::Seek(Whence whence, int64 offset) {
338 static_cast<int>(whence));
file_stream_win.cc 18 // Ensure that we can just use our Whence values directly.
183 int64 FileStream::Seek(Whence whence, int64 offset) {
190 DWORD move_method = static_cast<DWORD>(whence);
  /external/chromium_org/base/files/
file.h 109 enum Whence {
181 // defined by |whence|. Returns the resultant current position in the file
183 int64 Seek(Whence whence, int64 offset);
file_win.cc 111 int64 File::Seek(Whence whence, int64 offset) {
119 DWORD move_method = static_cast<DWORD>(whence);
file_posix.cc 27 // Make sure our Whence mappings match the system headers.
228 int64 File::Seek(Whence whence, int64 offset) {
234 return lseek(file_, static_cast<off_t>(offset), static_cast<int>(whence));
  /external/chromium/webkit/glue/
webfileutilities_impl.cc 131 return file_stream.Seek(static_cast<net::Whence>(origin), offset);
  /external/clang/lib/StaticAnalyzer/Checkers/
StreamChecker.cpp 260 // Check the legality of the 'whence' argument of 'fseek'.
261 SVal Whence = state->getSVal(CE->getArg(2), C.getLocationContext());
262 Optional<nonloc::ConcreteInt> CI = Whence.getAs<nonloc::ConcreteInt>();
273 BT_illegalwhence.reset(new BuiltinBug("Illegal whence argument",
274 "The whence argument to fseek() should be "

Completed in 102 milliseconds