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

  /external/chromium_org/net/disk_cache/blockfile/
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);
87 // 8. BackgroundIO::OnIOSignalled()
107 void OnIOComplete(BackgroundIO* operation);
113 void InvokeCallback(BackgroundIO* operation, bool cancel_task);
119 virtual void OnOperationComplete(BackgroundIO* operation, bool cancel) = 0
    [all...]
in_flight_io.cc 17 BackgroundIO::BackgroundIO(InFlightIO* controller)
22 void BackgroundIO::OnIOSignalled() {
27 void BackgroundIO::Cancel() {
34 BackgroundIO::~BackgroundIO() {
49 void BackgroundIO::NotifyController() {
66 BackgroundIO* operation = it->get();
74 void InFlightIO::OnIOComplete(BackgroundIO* operation) {
83 FROM_HERE, base::Bind(&BackgroundIO::OnIOSignalled, operation))
    [all...]
file_ios.cc 19 class FileBackgroundIO : public disk_cache::BackgroundIO {
29 : disk_cache::BackgroundIO(controller), callback_(callback), file_(file),
82 virtual void OnOperationComplete(disk_cache::BackgroundIO* operation,
135 void FileInFlightIO::OnOperationComplete(disk_cache::BackgroundIO* operation,
in_flight_backend_io.h 27 class BackendIO : public BackgroundIO {
207 virtual void OnOperationComplete(BackgroundIO* operation,
in_flight_backend_io.cc 24 : BackgroundIO(controller),
494 void InFlightBackendIO::OnOperationComplete(BackgroundIO* operation,

Completed in 74 milliseconds