Searched refs:BackgroundIO (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/net/disk_cache/blockfile/ |
D | in_flight_io.h | 24 class BackgroundIO : public base::RefCountedThreadSafe<BackgroundIO> { 31 explicit BackgroundIO(InFlightIO* controller); 53 virtual ~BackgroundIO(); 62 friend class base::RefCountedThreadSafe<BackgroundIO>; 69 DISALLOW_COPY_AND_ASSIGN(BackgroundIO); 107 void OnIOComplete(BackgroundIO* operation); 113 void InvokeCallback(BackgroundIO* operation, bool cancel_task); 119 virtual void OnOperationComplete(BackgroundIO* operation, bool cancel) = 0; 124 void OnOperationPosted(BackgroundIO* operation); 127 typedef std::set<scoped_refptr<BackgroundIO> > IOList;
|
D | in_flight_io.cc | 17 BackgroundIO::BackgroundIO(InFlightIO* controller) in BackgroundIO() function in disk_cache::BackgroundIO 22 void BackgroundIO::OnIOSignalled() { in OnIOSignalled() 27 void BackgroundIO::Cancel() { in Cancel() 34 BackgroundIO::~BackgroundIO() { in ~BackgroundIO() 49 void BackgroundIO::NotifyController() { in NotifyController() 66 BackgroundIO* operation = it->get(); in DropPendingIO() 74 void InFlightIO::OnIOComplete(BackgroundIO* operation) { in OnIOComplete() 83 FROM_HERE, base::Bind(&BackgroundIO::OnIOSignalled, operation)); in OnIOComplete() 88 void InFlightIO::InvokeCallback(BackgroundIO* operation, bool cancel_task) { in InvokeCallback() 108 void InFlightIO::OnOperationPosted(BackgroundIO* operation) { in OnOperationPosted()
|
D | file_ios.cc | 19 class FileBackgroundIO : public disk_cache::BackgroundIO { 29 : disk_cache::BackgroundIO(controller), callback_(callback), file_(file), in FileBackgroundIO() 82 virtual void OnOperationComplete(disk_cache::BackgroundIO* operation, 135 void FileInFlightIO::OnOperationComplete(disk_cache::BackgroundIO* operation, in OnOperationComplete()
|
D | in_flight_backend_io.h | 27 class BackendIO : public BackgroundIO { 207 virtual void OnOperationComplete(BackgroundIO* operation,
|
D | in_flight_backend_io.cc | 24 : BackgroundIO(controller), in BackendIO() 494 void InFlightBackendIO::OnOperationComplete(BackgroundIO* operation, in OnOperationComplete()
|