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

  /external/libbrillo/brillo/message_loops/
base_message_loop.h 70 // Called from the message loop when the IOTask should run the scheduled
71 // callback. This is a simple wrapper of IOTask::OnFileReadyPostedTask()
91 class IOTask : public base::MessageLoopForIO::Watcher {
93 IOTask(const tracked_objects::Location& location,
104 // IOTask entry available.
112 // Cancel the IOTask and returns whether it was actually canceled, with the
150 DISALLOW_COPY_AND_ASSIGN(IOTask);
153 std::map<MessageLoop::TaskId, IOTask> io_tasks_;
base_message_loop.cc 162 // This might be an IOTask then.
299 BaseMessageLoop::IOTask::IOTask(const tracked_objects::Location& location,
309 bool BaseMessageLoop::IOTask::StartWatching() {
314 void BaseMessageLoop::IOTask::StopWatching() {
319 void BaseMessageLoop::IOTask::OnFileCanReadWithoutBlocking(int /* fd */) {
323 void BaseMessageLoop::IOTask::OnFileCanWriteWithoutBlocking(int /* fd */) {
327 void BaseMessageLoop::IOTask::OnFileReady() {
364 void BaseMessageLoop::IOTask::OnFileReadyPostedTask() {
408 bool BaseMessageLoop::IOTask::CancelTask()
    [all...]

Completed in 1403 milliseconds