Searched refs:io_thread_ (Results 1 - 25 of 112) sorted by relevance

12345

/external/chromium_org/components/gcm_driver/
H A Dfake_gcm_client_factory.cc19 io_thread_(io_thread) {
27 gcm_client_start_mode_, ui_thread_, io_thread_));
H A Dgcm_driver_desktop.cc89 scoped_refptr<base::SequencedTaskRunner> io_thread_; member in class:gcm::GCMDriverDesktop::IOWorker
102 io_thread_(io_thread) {
107 DCHECK(io_thread_->RunsTasksOnCurrentThread());
116 DCHECK(io_thread_->RunsTasksOnCurrentThread());
132 DCHECK(io_thread_->RunsTasksOnCurrentThread());
143 DCHECK(io_thread_->RunsTasksOnCurrentThread());
155 DCHECK(io_thread_->RunsTasksOnCurrentThread());
166 DCHECK(io_thread_->RunsTasksOnCurrentThread());
177 DCHECK(io_thread_->RunsTasksOnCurrentThread());
187 DCHECK(io_thread_
[all...]
H A Dfake_gcm_client.cc29 io_thread_(io_thread),
48 DCHECK(io_thread_->RunsTasksOnCurrentThread());
65 DCHECK(io_thread_->RunsTasksOnCurrentThread());
71 DCHECK(io_thread_->RunsTasksOnCurrentThread());
78 DCHECK(io_thread_->RunsTasksOnCurrentThread());
90 DCHECK(io_thread_->RunsTasksOnCurrentThread());
102 DCHECK(io_thread_->RunsTasksOnCurrentThread());
136 io_thread_->PostTask(
145 io_thread_->PostTask(
156 io_thread_
[all...]
H A Dfake_gcm_client_factory.h35 scoped_refptr<base::SequencedTaskRunner> io_thread_; member in class:gcm::FakeGCMClientFactory
/external/chromium_org/content/child/
H A Dchild_process.h45 base::MessageLoop* io_message_loop() { return io_thread_.message_loop(); }
47 return io_thread_.message_loop_proxy().get();
79 base::Thread io_thread_; member in class:content::ChildProcess
83 // io_thread_.
H A Dchild_process.cc40 io_thread_("Chrome_ChildIOThread") {
47 CHECK(io_thread_.StartWithOptions(
51 io_thread_.SetPriority(base::kThreadPriority_Display);
72 io_thread_.Stop();
/external/chromium_org/storage/browser/quota/
H A Dquota_manager_proxy.cc37 if (!io_thread_->BelongsToCurrentThread() &&
38 io_thread_->PostTask(
54 if (!io_thread_->BelongsToCurrentThread()) {
55 io_thread_->PostTask(
71 if (!io_thread_->BelongsToCurrentThread()) {
72 io_thread_->PostTask(
85 if (!io_thread_->BelongsToCurrentThread()) {
86 io_thread_->PostTask(
98 if (!io_thread_->BelongsToCurrentThread()) {
99 io_thread_
[all...]
/external/chromium_org/components/invalidation/
H A Dnon_blocking_invalidator_unittest.cc25 NonBlockingInvalidatorTestDelegate() : io_thread_("IO thread") {}
39 io_thread_.StartWithOptions(options);
41 new net::TestURLRequestContextGetter(io_thread_.message_loop_proxy());
64 io_thread_.Stop();
71 io_thread_.message_loop_proxy()->PostTaskAndReply(
89 base::Thread io_thread_; member in class:syncer::NonBlockingInvalidatorTestDelegate
/external/chromium_org/base/test/
H A Dtest_io_thread.cc24 : io_thread_("test_io_thread"), io_thread_started_(false) {
42 CHECK(io_thread_.StartWithOptions(
48 io_thread_.Stop();
H A Dtest_io_thread.h43 return static_cast<base::MessageLoopForIO*>(io_thread_.message_loop());
51 base::Thread io_thread_; member in class:base::TestIOThread
/external/chromium_org/mojo/shell/
H A Dtask_runners.h34 return io_thread_->message_loop_proxy().get();
43 scoped_ptr<base::Thread> io_thread_; member in class:mojo::shell::TaskRunners
H A Dtask_runners.cc29 io_thread_(CreateIOThread("io_thread")),
/external/chromium_org/components/signin/core/browser/
H A Dsignin_manager_cookie_helper.cc20 io_thread_(io_thread) {
41 io_thread_->PostTask(FROM_HERE,
48 DCHECK(io_thread_->BelongsToCurrentThread());
63 DCHECK(io_thread_->BelongsToCurrentThread());
/external/chromium_org/base/message_loop/
H A Dmessage_loop_proxy_impl_unittest.cc29 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));
H A Dmessage_pump_io_ios_unittest.cc20 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_org/chrome/test/chromedriver/net/
H A Dnet_util_unittest.cc33 : 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(
106 base::Thread io_thread_; member in class:__anon5960::FetchUrlTest
/external/chromium_org/net/test/embedded_test_server/
H A Dembedded_test_server.cc143 DCHECK(io_thread_ && io_thread_->IsRunning());
150 io_thread_->Stop();
151 io_thread_.reset();
182 DCHECK(!io_thread_.get());
185 io_thread_.reset(new base::Thread("EmbeddedTestServer io thread"));
186 CHECK(io_thread_->StartWithOptions(thread_options));
190 DCHECK(io_thread_->message_loop_proxy()->BelongsToCurrentThread());
211 DCHECK(io_thread_->message_loop_proxy()->BelongsToCurrentThread());
217 DCHECK(io_thread_
[all...]
/external/chromium_org/tools/ipc_fuzzer/replay/
H A Dreplay_process.cc21 : io_thread_("Chrome_ChildIOThread"),
44 io_thread_.StartWithOptions(
61 io_thread_.message_loop_proxy());
H A Dreplay_process.h48 base::Thread io_thread_; member in class:ipc_fuzzer::ReplayProcess
/external/chromium_org/components/nacl/loader/nonsfi/
H A Dnonsfi_listener.cc30 NonSfiListener::NonSfiListener() : io_thread_("NaCl_IOThread"),
32 io_thread_.StartWithOptions(
45 io_thread_.message_loop_proxy().get(),
123 io_thread_.message_loop_proxy().get(),
H A Dnonsfi_listener.h42 base::Thread io_thread_; member in class:nacl::nonsfi::NonSfiListener
/external/chromium_org/content/public/test/
H A Dtest_browser_thread_bundle.cc34 io_thread_.reset();
110 io_thread_.reset(new TestBrowserThread(BrowserThread::IO));
111 io_thread_->StartIOThread();
113 io_thread_.reset(
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_quota_helper.cc34 helper->io_thread_->DeleteSoon(FROM_HERE, helper);
39 : io_thread_(io_thread) {
H A Dbrowsing_data_quota_helper.h70 explicit BrowsingDataQuotaHelper(base::MessageLoopProxy* io_thread_);
76 scoped_refptr<base::MessageLoopProxy> io_thread_; member in class:BrowsingDataQuotaHelper
/external/chromium_org/chrome/service/
H A Dservice_process.h61 return io_thread_.get();
126 scoped_ptr<base::Thread> io_thread_; member in class:ServiceProcess

Completed in 412 milliseconds

12345