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

  /external/chromium/net/disk_cache/
file_posix.cc 19 class FileBackgroundIO : public disk_cache::BackgroundIO {
26 FileBackgroundIO(disk_cache::File* file, const void* buf, size_t buf_len,
50 ~FileBackgroundIO() {}
59 DISALLOW_COPY_AND_ASSIGN(FileBackgroundIO);
92 void FileBackgroundIO::Read() {
102 void FileBackgroundIO::Write() {
113 scoped_refptr<FileBackgroundIO> operation(
114 new FileBackgroundIO(file, buf, buf_len, offset, callback, this));
118 NewRunnableMethod(operation.get(), &FileBackgroundIO::Read), true);
125 scoped_refptr<FileBackgroundIO> operation
    [all...]
  /external/chromium_org/net/disk_cache/
file_ios.cc 19 class FileBackgroundIO : public disk_cache::BackgroundIO {
26 FileBackgroundIO(disk_cache::File* file, const void* buf, size_t buf_len,
50 virtual ~FileBackgroundIO() {}
59 DISALLOW_COPY_AND_ASSIGN(FileBackgroundIO);
92 void FileBackgroundIO::Read() {
102 void FileBackgroundIO::Write() {
113 scoped_refptr<FileBackgroundIO> operation(
114 new FileBackgroundIO(file, buf, buf_len, offset, callback, this));
118 base::Bind(&FileBackgroundIO::Read, operation.get()), true);
125 scoped_refptr<FileBackgroundIO> operation
    [all...]

Completed in 41 milliseconds