HomeSort by relevance Sort by last modified time
    Searched refs:io_thread_ (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /external/chromium/android/autofill/
android_url_request_context_getter.cc 36 if (!io_thread_)
39 if (!io_thread_->IsRunning()) {
42 if (!io_thread_->StartWithOptions(options)) {
43 io_thread_ = NULL;
47 return io_thread_->message_loop_proxy();
android_url_request_context_getter.h 39 , io_thread_(ioThread)
51 mutable base::Thread* io_thread_; member in class:AndroidURLRequestContextGetter
  /external/chromium_org/content/child/
child_process.h 33 base::MessageLoop* io_message_loop() { return io_thread_.message_loop(); }
35 return io_thread_.message_loop_proxy().get();
68 base::Thread io_thread_; member in class:content::ChildProcess
72 // io_thread_.
  /external/chromium_org/sync/notifier/
non_blocking_invalidator_unittest.cc 29 NonBlockingInvalidatorTestDelegate() : io_thread_("IO thread") {}
43 io_thread_.StartWithOptions(options);
45 new net::TestURLRequestContextGetter(io_thread_.message_loop_proxy());
65 io_thread_.Stop();
72 io_thread_.message_loop_proxy()->PostTaskAndReply(
90 base::Thread io_thread_; member in class:syncer::__anon12439::NonBlockingInvalidatorTestDelegate
  /external/chromium/chrome/browser/ui/cocoa/
browser_test_helper.h 49 scoped_ptr<BrowserThread> io_thread_; member in class:BrowserTestHelper
browser_test_helper.cc 10 io_thread_(new BrowserThread(BrowserThread::IO, &message_loop_)) {
36 io_thread_.reset();
  /external/chromium_org/chrome/browser/extensions/api/dns/
dns_api.h 46 IOThread* io_thread_; member in class:extensions::DnsResolveFunction
  /external/chromium_org/base/message_loop/
message_loop_proxy_impl_unittest.cc 29 ASSERT_TRUE(io_thread_->message_loop_proxy()->BelongsToCurrentThread());
30 ASSERT_EQ(io_thread_->message_loop_proxy(),
42 io_thread_.reset(new Thread("MessageLoopProxyImplTest_IO"));
44 io_thread_->Start();
49 io_thread_->Stop();
75 scoped_ptr<Thread> io_thread_; member in class:base::MessageLoopProxyImplTest
83 EXPECT_TRUE(io_thread_->message_loop_proxy()->ReleaseSoon(FROM_HERE, this));
message_pump_libevent_unittest.cc 21 io_thread_("MessagePumpLibeventTestIOThread") {}
26 ASSERT_TRUE(io_thread_.StartWithOptions(options));
27 ASSERT_EQ(MessageLoop::TYPE_IO, io_thread_.message_loop()->type());
41 return static_cast<MessageLoopForIO*>(io_thread_.message_loop());
54 Thread io_thread_; member in class:base::MessagePumpLibeventTest
message_pump_io_ios_unittest.cc 20 io_thread_("MessagePumpIOSForIOTestIOThread") {}
25 ASSERT_TRUE(io_thread_.StartWithOptions(options));
26 ASSERT_EQ(MessageLoop::TYPE_IO, io_thread_.message_loop()->type());
42 return static_cast<MessageLoopForIO*>(io_thread_.message_loop());
56 Thread io_thread_; member in class:base::MessagePumpIOSForIOTest
  /external/chromium/base/
message_loop_proxy_impl_unittest.cc 25 ASSERT_TRUE(io_thread_->message_loop_proxy()->BelongsToCurrentThread());
34 io_thread_.reset(new base::Thread("MessageLoopProxyImplTest_IO"));
36 io_thread_->Start();
41 io_thread_->Stop();
78 scoped_ptr<base::Thread> io_thread_; member in class:MessageLoopProxyImplTest
93 EXPECT_TRUE(io_thread_->message_loop_proxy()->ReleaseSoon(FROM_HERE, this));
  /external/chromium_org/chrome/test/chromedriver/net/
net_util_unittest.cc 33 : io_thread_("io"),
36 CHECK(io_thread_.StartWithOptions(options));
38 io_thread_.message_loop_proxy());
40 io_thread_.message_loop_proxy()->PostTask(
49 io_thread_.message_loop_proxy()->PostTask(
105 base::Thread io_thread_; member in class:__anon9451::FetchUrlTest
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_quota_helper.h 70 explicit BrowsingDataQuotaHelper(base::MessageLoopProxy* io_thread_);
76 scoped_refptr<base::MessageLoopProxy> io_thread_; member in class:BrowsingDataQuotaHelper
browsing_data_quota_helper.cc 34 helper->io_thread_->DeleteSoon(FROM_HERE, helper);
39 : io_thread_(io_thread) {
browsing_data_quota_helper_impl.cc 44 if (!io_thread_->BelongsToCurrentThread()) {
45 io_thread_->PostTask(
65 io_thread_(io_thread),
73 if (!io_thread_->BelongsToCurrentThread()) {
74 io_thread_->PostTask(
  /external/chromium_org/content/public/test/
test_browser_thread_bundle.cc 27 io_thread_.reset();
98 io_thread_.reset(new TestBrowserThread(BrowserThread::IO));
99 io_thread_->StartIOThread();
101 io_thread_.reset(
  /external/chromium_org/net/test/embedded_test_server/
embedded_test_server.cc 103 : io_thread_(io_thread),
106 DCHECK(io_thread_.get());
122 if (!io_thread_->PostTaskAndReply(
138 if (!io_thread_->PostTaskAndReply(
151 DCHECK(io_thread_->BelongsToCurrentThread());
172 DCHECK(io_thread_->BelongsToCurrentThread());
182 DCHECK(io_thread_->BelongsToCurrentThread());
229 DCHECK(io_thread_->BelongsToCurrentThread());
241 DCHECK(io_thread_->BelongsToCurrentThread());
252 DCHECK(io_thread_->BelongsToCurrentThread())
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_service_unittest.h 56 BrowserThread io_thread_; member in class:ExtensionServiceTestBase
  /external/chromium_org/chrome/browser/ui/cocoa/
cocoa_profile_test.h 69 scoped_ptr<content::TestBrowserThread> io_thread_; member in class:CocoaProfileTest
  /external/chromium/chrome/browser/sync/glue/
database_model_worker_unittest.cc 26 io_thread_(BrowserThread::IO, &io_loop_),
81 BrowserThread io_thread_; member in class:__anon4884::DatabaseModelWorkerTest
  /external/chromium/chrome/browser/sync/notifier/
invalidation_notifier_unittest.cc 29 InvalidationNotifierTest() : io_thread_(BrowserThread::IO, &message_loop_) {}
53 BrowserThread io_thread_; member in class:sync_notifier::__anon4910::InvalidationNotifierTest
  /external/chromium_org/chrome/browser/extensions/
test_extension_environment.cc 29 io_thread_(BrowserThread::IO),
34 io_thread_.StartIOThread();
  /external/chromium_org/chrome/service/
service_process.h 60 return io_thread_.get();
125 scoped_ptr<base::Thread> io_thread_; member in class:ServiceProcess
  /external/chromium/chrome/browser/search_engines/
template_url_model_test_util.cc 55 io_thread_(BrowserThread::IO) {
66 io_thread_.StartWithOptions(options);
77 BrowserThread io_thread_; member in class:TemplateURLModelTestingProfile
124 if (io_thread_.IsRunning())
128 io_thread_.Stop();
  /external/chromium_org/net/test/spawned_test_server/
spawner_communicator.cc 101 : io_thread_("spawner_communicator"),
113 DCHECK_NE(base::MessageLoop::current(), io_thread_.message_loop());
119 DCHECK_NE(base::MessageLoop::current(), io_thread_.message_loop());
126 is_running_ = io_thread_.StartWithOptions(options);
131 DCHECK_NE(base::MessageLoop::current(), io_thread_.message_loop());
138 io_thread_.Stop();
151 DCHECK(io_thread_.message_loop());
156 io_thread_.message_loop()->PostTask(FROM_HERE, base::Bind(
167 base::MessageLoop* loop = io_thread_.message_loop();

Completed in 469 milliseconds

1 2 3 4 5 6 7