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

  /external/chromium/net/disk_cache/
in_flight_io.h 20 class BackgroundIO : public base::RefCountedThreadSafe<BackgroundIO> {
27 explicit BackgroundIO(InFlightIO* controller);
49 virtual ~BackgroundIO();
55 friend class base::RefCountedThreadSafe<BackgroundIO>;
64 DISALLOW_COPY_AND_ASSIGN(BackgroundIO);
82 // 8. BackgroundIO::OnIOSignalled()
99 void OnIOComplete(BackgroundIO* operation);
105 void InvokeCallback(BackgroundIO* operation, bool cancel_task);
111 virtual void OnOperationComplete(BackgroundIO* operation, bool cancel) = 0
    [all...]
in_flight_io.cc 11 BackgroundIO::BackgroundIO(InFlightIO* controller)
16 void BackgroundIO::OnIOSignalled() {
21 void BackgroundIO::Cancel() {
26 BackgroundIO::~BackgroundIO() {}
29 void BackgroundIO::NotifyController() {
52 void InFlightIO::OnIOComplete(BackgroundIO* operation) {
63 &BackgroundIO::OnIOSignalled));
68 void InFlightIO::InvokeCallback(BackgroundIO* operation, bool cancel_task)
    [all...]
file_posix.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 26 class BackendIO : public BackgroundIO {
194 virtual void OnOperationComplete(BackgroundIO* operation, bool cancel);
in_flight_backend_io.cc 18 : BackgroundIO(controller), backend_(backend), callback_(callback),
443 void InFlightBackendIO::OnOperationComplete(BackgroundIO* operation,

Completed in 750 milliseconds