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

  /external/chromium/net/socket/
tcp_client_socket_libevent.h 47 class ReadWatcher : public MessageLoopForIO::Watcher {
51 // MessageLoopForIO::Watcher methods
66 class WriteWatcher : public MessageLoopForIO::Watcher {
70 // MessageLoopForIO::Watcher methods
111 MessageLoopForIO::FileDescriptorWatcher read_socket_watcher_;
112 MessageLoopForIO::FileDescriptorWatcher write_socket_watcher_;
tcp_client_socket_libevent.cc 205 if (!MessageLoopForIO::current()->WatchFileDescriptor(
206 socket_, true, MessageLoopForIO::WATCH_WRITE, &write_socket_watcher_,
287 if (!MessageLoopForIO::current()->WatchFileDescriptor(
288 socket_, true, MessageLoopForIO::WATCH_READ,
319 if (!MessageLoopForIO::current()->WatchFileDescriptor(
320 socket_, true, MessageLoopForIO::WATCH_WRITE,
  /external/chromium/net/proxy/
proxy_config_service_linux.h 46 MessageLoopForIO* file_loop) = 0;
123 MessageLoopForIO* file_loop);
217 MessageLoopForIO* file_loop) {
proxy_config_service_linux.cc 205 MessageLoopForIO* file_loop) {
438 MessageLoopForIO* file_loop) {
481 MessageLoopForIO::WATCH_READ, &inotify_watcher_, this);
807 MessageLoopForIO* file_loop_;
    [all...]
proxy_config_service_linux_unittest.cc 159 MessageLoopForIO* file_loop) {
266 static_cast<MessageLoopForIO*>(file_loop));
    [all...]
proxy_service.cc 563 // The file loop should be a MessageLoopForIO on Linux.
571 static_cast<MessageLoopForIO*>(file_loop));
  /external/chromium/net/base/
net_test_suite.h 35 message_loop_.reset(new MessageLoopForIO());
listen_socket.h 39 public MessageLoopForIO::Watcher
112 MessageLoopForIO::FileDescriptorWatcher watcher_;
file_stream_win.cc 51 class FileStream::AsyncContext : public MessageLoopForIO::IOHandler {
65 virtual void OnIOCompleted(MessageLoopForIO::IOContext* context,
69 MessageLoopForIO::IOContext context_;
80 MessageLoopForIO::current()->WaitForIOCompletion(INFINITE, this);
95 MessageLoopForIO::IOContext* context, DWORD bytes_read, DWORD error) {
130 MessageLoopForIO::current()->RegisterIOHandler(file_,
166 MessageLoopForIO::current()->RegisterIOHandler(file_,
listen_socket_unittest.h 116 MessageLoopForIO* loop_;
listen_socket.cc 201 MessageLoopForIO::current()->WatchFileDescriptor(
202 socket_, true, MessageLoopForIO::WATCH_READ, &watcher_, this);
file_stream_posix.cc 137 // posted to the MessageLoopForIO instance.
187 // The MessageLoopForIO that this AsyncContext is running on.
188 MessageLoopForIO* const message_loop_;
210 : message_loop_(MessageLoopForIO::current()),
223 // MessageLoopForIO, but AsyncContext() got deleted before then.
listen_socket_unittest.cc 45 loop_ = reinterpret_cast<MessageLoopForIO*>(thread_->message_loop());
  /external/chromium/net/disk_cache/
file_win.cc 23 MessageLoopForIO::IOContext context_;
33 class CompletionHandler : public MessageLoopForIO::IOHandler {
34 virtual void OnIOCompleted(MessageLoopForIO::IOContext* context,
38 void CompletionHandler::OnIOCompleted(MessageLoopForIO::IOContext* context,
94 MessageLoopForIO::current()->RegisterIOHandler(
282 MessageLoopForIO::IOHandler* handler = Singleton<CompletionHandler>::get();
283 MessageLoopForIO::current()->WaitForIOCompletion(100, handler);
disk_cache_perftest.cc 155 MessageLoopForIO message_loop;
206 MessageLoopForIO message_loop;
  /external/chromium/net/websockets/
websocket_throttle_unittest.cc 137 MessageLoopForIO::current()->RunAllPending();
143 MessageLoopForIO::current()->RunAllPending();
148 MessageLoopForIO::current()->RunAllPending();
153 MessageLoopForIO::current()->RunAllPending();
websocket_throttle.cc 105 MessageLoopForIO::current()->PostTask(
  /external/chromium/base/
message_loop.h 182 // MessageLoopForIO.
482 // MessageLoopForIO extends MessageLoop with methods that are particular to a
486 // MessageLoopForIO::current()->...call some method...
488 class MessageLoopForIO : public MessageLoop {
490 MessageLoopForIO() : MessageLoop(TYPE_IO) {
493 // Returns the MessageLoopForIO of the current thread.
494 static MessageLoopForIO* current() {
497 return static_cast<MessageLoopForIO*>(loop);
534 // Do not add any member variables to MessageLoopForIO! This is important b/c
535 // MessageLoopForIO is often allocated via MessageLoop(TYPE_IO). Any extr
    [all...]
message_loop_unittest.cc     [all...]
message_loop.cc 608 // MessageLoopForIO
612 void MessageLoopForIO::RegisterIOHandler(HANDLE file, IOHandler* handler) {
616 bool MessageLoopForIO::WaitForIOCompletion(DWORD timeout, IOHandler* filter) {
622 bool MessageLoopForIO::WatchFileDescriptor(int fd,
  /external/chromium/net/tools/dump_cache/
upgrade.cc 110 class BaseSM : public MessageLoopForIO::IOHandler {
121 MessageLoopForIO::IOContext in_context_;
122 MessageLoopForIO::IOContext out_context_;
145 MessageLoopForIO::current()->RegisterIOHandler(channel_, this);
211 virtual void OnIOCompleted(MessageLoopForIO::IOContext* context,
253 void MasterSM::OnIOCompleted(MessageLoopForIO::IOContext* context,
523 virtual void OnIOCompleted(MessageLoopForIO::IOContext* context,
554 void SlaveSM::OnIOCompleted(MessageLoopForIO::IOContext* context,
  /external/chromium/net/ocsp/
nss_ocsp.cc 71 DCHECK_EQ(MessageLoopForIO::current(), io_loop_);
97 : io_loop_(MessageLoopForIO::current()) {
253 DCHECK_EQ(MessageLoopForIO::current(), io_loop_);
267 DCHECK_EQ(MessageLoopForIO::current(), io_loop_);
290 DCHECK_EQ(MessageLoopForIO::current(), io_loop_);
330 io_loop_ = MessageLoopForIO::current();
365 DCHECK_EQ(MessageLoopForIO::current(), io_loop_);

Completed in 302 milliseconds