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

1 2 3

  /external/chromium_org/chrome/browser/metrics/
network_stats_uploader.cc 29 IOThread* io_thread = g_browser_process->io_thread(); local
30 if (!io_thread)
33 chrome_browser_net::CollectNetworkStats(network_stats_server_, io_thread);
  /external/chromium_org/components/gcm_driver/
fake_gcm_client_factory.cc 16 const scoped_refptr<base::SequencedTaskRunner>& io_thread)
19 io_thread_(io_thread) {
fake_gcm_client_factory.h 26 const scoped_refptr<base::SequencedTaskRunner>& io_thread);
  /external/valgrind/main/none/tests/
pth_cancel2.c 74 pthread_t io_thread, killer_thread; local
82 pthread_create(&io_thread,
89 (void *)&io_thread);
91 pthread_join(io_thread, NULL);
  /external/chromium_org/mojo/system/
channel_unittest.cc 45 CHECK_EQ(base::MessageLoop::current(), io_thread()->message_loop());
50 CHECK_EQ(base::MessageLoop::current(), io_thread()->message_loop());
60 CHECK_EQ(base::MessageLoop::current(), io_thread()->message_loop());
66 base::TestIOThread* io_thread() { return &io_thread_; } function in class:mojo::system::__anon13470::ChannelTest
75 CHECK_EQ(base::MessageLoop::current(), io_thread()->message_loop());
96 io_thread()->PostTaskAndWait(FROM_HERE,
101 io_thread()->PostTaskAndWait(
106 io_thread()->PostTaskAndWait(
166 io_thread()->PostTaskAndWait(FROM_HERE,
174 io_thread()->PostTaskAndWait
    [all...]
raw_channel_unittest.cc 92 base::TestIOThread* io_thread() { return &io_thread_; } function in class:mojo::system::__anon13486::RawChannelTest
198 io_thread()->PostTaskAndWait(
214 io_thread()->PostTaskAndWait(
283 io_thread()->PostTaskAndWait(
306 io_thread()->PostTaskAndWait(
380 io_thread()->PostTaskAndWait(FROM_HERE,
388 io_thread()->PostTaskAndWait(FROM_HERE,
410 io_thread()->PostTaskAndWait(
414 io_thread()->PostTaskAndWait(
479 io_thread()->PostTaskAndWait
    [all...]
  /external/chromium_org/mojo/embedder/
channel_init.h 47 scoped_refptr<base::TaskRunner> io_thread,
channel_init.cc 44 scoped_refptr<base::TaskRunner> io_thread,
  /external/chromium_org/ppapi/host/
resource_message_filter_unittest.cc 96 // message of type |reply_msg_type|). |io_thread| is the thread on which
99 MyResourceFilter(const base::Thread& io_thread,
103 : ResourceMessageFilter(io_thread.message_loop_proxy()),
147 base::Thread io_thread("test_io_thread");
148 ASSERT_TRUE(io_thread.Start());
153 new MyResourceFilter(io_thread, bg_thread1, MSG1_TYPE, REPLY_MSG1_TYPE);
158 new MyResourceFilter(io_thread, bg_thread2, MSG2_TYPE, REPLY_MSG2_TYPE);
180 EXPECT_EQ(host.last_reply_message_loop(), io_thread.message_loop());
190 EXPECT_EQ(host.last_reply_message_loop(), io_thread.message_loop());
199 io_thread.Stop()
    [all...]
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_quota_helper.cc 38 base::MessageLoopProxy* io_thread)
39 : io_thread_(io_thread) {
browsing_data_quota_helper_impl.cc 59 base::MessageLoopProxy* io_thread,
61 : BrowsingDataQuotaHelper(io_thread),
65 io_thread_(io_thread),
browsing_data_quota_helper_impl.h 35 base::MessageLoopProxy* io_thread,
  /external/chromium_org/components/signin/core/browser/
signin_manager_cookie_helper.cc 17 scoped_refptr<base::MessageLoopProxy> io_thread)
20 io_thread_(io_thread) {
signin_manager_cookie_helper.h 29 scoped_refptr<base::MessageLoopProxy> io_thread);
  /external/chromium_org/sync/internal_api/
http_bridge_unittest.cc 95 base::Thread* io_thread() { return &io_thread_; } function in class:syncer::SyncHttpBridgeTest
181 io_thread()->message_loop()
192 new net::TestURLRequestContextGetter(io_thread()->message_loop_proxy()));
314 new net::TestURLRequestContextGetter(io_thread()->message_loop_proxy()));
323 io_thread()->message_loop_proxy()->PostTask(
333 new net::TestURLRequestContextGetter(io_thread()->message_loop_proxy()));
367 ASSERT_TRUE(io_thread()->message_loop_proxy()->PostTask(
385 ASSERT_TRUE(io_thread()->message_loop_proxy()->PostTask(
405 io_thread()->Stop();
447 new net::TestURLRequestContextGetter(io_thread()->message_loop_proxy()))
    [all...]
  /external/chromium_org/remoting/host/setup/
start_host.cc 163 base::Thread io_thread("IO thread");
164 io_thread.StartWithOptions(io_thread_options);
169 new remoting::URLRequestContextGetter(io_thread.task_runner(),
195 io_thread.Stop();
me2me_native_messaging_host_main.cc 88 base::Thread io_thread("io_thread");
89 io_thread.StartWithOptions(
186 new URLRequestContextGetter(io_thread.task_runner(),
236 io_thread.task_runner(),
240 CreatePairingRegistry(io_thread.task_runner());
  /external/chromium_org/sync/tools/
sync_listen_notifications.cc 153 base::Thread io_thread("IO thread");
156 io_thread.StartWithOptions(options);
184 new MyTestURLRequestContextGetter(io_thread.message_loop_proxy()));
212 io_thread.Stop();
  /external/chromium_org/chrome/service/net/
service_url_request_context_getter.cc 103 g_service_process->io_thread()->message_loop_proxy()) {
108 g_service_process->io_thread()->message_loop_proxy(),
  /external/chromium_org/chrome/test/chromedriver/server/
chromedriver_server.cc 175 base::Thread io_thread("ChromeDriver IO");
176 CHECK(io_thread.StartWithOptions(
182 io_thread.message_loop_proxy(),
189 io_thread.message_loop()
203 io_thread.message_loop()
  /external/chromium_org/chrome/browser/net/
chrome_fraudulent_certificate_reporter_unittest.cc 170 content::TestBrowserThread io_thread(BrowserThread::IO, &loop);
177 content::TestBrowserThread io_thread(BrowserThread::IO, &loop);
184 content::TestBrowserThread io_thread(BrowserThread::IO, &loop);
net_error_tab_helper.cc 11 #include "chrome/browser/io_thread.h"
57 // Can only access g_browser_process->io_thread() from the browser thread,
61 IOThread* io_thread) {
65 io_thread->globals()->dns_probe_service.get();
186 g_browser_process->io_thread()));
  /external/chromium_org/chrome/browser/profiles/
off_the_record_profile_io_data.cc 17 #include "chrome/browser/io_thread.h"
208 IOThread* const io_thread = profile_params->io_thread; local
209 IOThread::Globals* const io_thread_globals = io_thread->globals();
215 main_context->set_net_log(io_thread->net_log());
293 IOThread* const io_thread = profile_params->io_thread; local
294 IOThread::Globals* const io_thread_globals = io_thread->globals();
300 extensions_context->set_net_log(io_thread->net_log());
  /external/chromium_org/chrome/service/
service_process.h 50 // remove the io_thread() and file_thread() accessors and replace them with
60 base::Thread* io_thread() const { function in class:ServiceProcess
  /external/chromium_org/storage/browser/quota/
quota_manager_proxy.h 68 const scoped_refptr<base::SingleThreadTaskRunner>& io_thread);

Completed in 597 milliseconds

1 2 3