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

  /external/chromium_org/net/disk_cache/simple/
simple_entry_operation.cc 17 return type == SimpleEntryOperation::TYPE_READ ||
18 type == SimpleEntryOperation::TYPE_WRITE ||
19 type == SimpleEntryOperation::TYPE_READ_SPARSE ||
20 type == SimpleEntryOperation::TYPE_WRITE_SPARSE;
24 return type == SimpleEntryOperation::TYPE_READ ||
25 type == SimpleEntryOperation::TYPE_READ_SPARSE;
29 return type == SimpleEntryOperation::TYPE_READ_SPARSE ||
30 type == SimpleEntryOperation::TYPE_WRITE_SPARSE;
35 SimpleEntryOperation::SimpleEntryOperation(const SimpleEntryOperation& other
    [all...]
simple_entry_operation.h 21 // SimpleEntryOperation stores the information regarding operations in
24 class SimpleEntryOperation {
40 SimpleEntryOperation(const SimpleEntryOperation& other);
41 ~SimpleEntryOperation();
43 static SimpleEntryOperation OpenOperation(SimpleEntryImpl* entry,
47 static SimpleEntryOperation CreateOperation(
52 static SimpleEntryOperation CloseOperation(SimpleEntryImpl* entry);
53 static SimpleEntryOperation ReadOperation(SimpleEntryImpl* entry,
60 static SimpleEntryOperation WriteOperation
    [all...]
simple_entry_impl.cc 231 pending_operations_.push(SimpleEntryOperation::OpenOperation(
251 pending_operations_.push(SimpleEntryOperation::CreateOperation(
255 pending_operations_.push(SimpleEntryOperation::CreateOperation(
280 pending_operations_.push(SimpleEntryOperation::DoomOperation(this, callback));
307 pending_operations_.push(SimpleEntryOperation::CloseOperation(this));
374 pending_operations_.push(SimpleEntryOperation::ReadOperation(
455 pending_operations_.push(SimpleEntryOperation::WriteOperation(this,
473 pending_operations_.push(SimpleEntryOperation::ReadSparseOperation(
485 pending_operations_.push(SimpleEntryOperation::WriteSparseOperation(
497 pending_operations_.push(SimpleEntryOperation::GetAvailableRangeOperation
    [all...]
simple_entry_impl.h 280 void RecordReadIsParallelizable(const SimpleEntryOperation& operation) const;
281 void RecordWriteDependencyType(const SimpleEntryOperation& operation) const;
352 std::queue<SimpleEntryOperation> pending_operations_;
356 scoped_ptr<SimpleEntryOperation> executing_operation_;

Completed in 420 milliseconds