Searched defs:thread_ (Results 1 - 25 of 103) sorted by path

12345

/external/chromium_org/base/android/
H A Dapplication_status_listener_unittest.cc45 thread_("ApplicationStatusTest thread"),
51 thread_.Start();
52 thread_.message_loop()
75 EXPECT_EQ(thread_.message_loop(), base::MessageLoop::current());
94 base::Thread thread_; member in class:base::android::__anon2176::MultiThreadedTest
/external/chromium_org/base/files/
H A Dfile_path_watcher_linux.cc75 Thread thread_; member in class:base::__anon2252::InotifyReader
255 : thread_("inotify_reader"),
263 if (inotify_fd_ >= 0 && pipe(shutdown_pipe_) == 0 && thread_.Start()) {
264 thread_.message_loop()->PostTask(
278 thread_.Stop();
/external/chromium_org/base/
H A Dsync_socket_unittest.cc19 thread_(this, "HangingReceiveThread") {
20 thread_.Start();
36 thread_.Join();
41 base::DelegateSimpleThread thread_; member in class:__anon2487::HangingReceiveThread
/external/chromium_org/base/threading/
H A Dsimple_thread.h110 PlatformThread::SetThreadPriority(thread_, priority);
117 PlatformThreadHandle thread_; // PlatformThread handle, invalid after Join! member in class:base::SimpleThread
H A Dthread.h166 PlatformThreadHandle thread_handle() { return thread_; }
226 PlatformThreadHandle thread_; member in class:base::Thread
/external/chromium_org/chrome/browser/devtools/device/
H A Dandroid_device_manager.h188 base::Thread* thread_; member in class:AndroidDeviceManager::HandlerThread
/external/chromium_org/chrome/browser/history/
H A Dhistory_service.h759 DCHECK(thread_) << "History service being called after cleanup";
768 DCHECK(thread_) << "History service being called after cleanup";
778 DCHECK(thread_) << "History service being called after cleanup";
789 DCHECK(thread_) << "History service being called after cleanup";
805 DCHECK(thread_) << "History service being called after cleanup";
824 DCHECK(thread_) << "History service being called after cleanup";
835 // |thread_| is NULL once |Cleanup| is NULL.
836 base::Thread* thread_; member in class:HistoryService
838 // This class has most of the implementation and runs on the 'thread_'.
839 // You MUST communicate with this class ONLY through the thread_'
[all...]
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_store_mac.h39 // Initializes |thread_|.
44 // Stops |thread_|.
105 scoped_ptr<base::Thread> thread_; member in class:PasswordStoreMac
/external/chromium_org/chrome/browser/printing/
H A Dprint_job_worker.h146 base::Thread thread_; member in class:printing::PrintJobWorker
148 // Tread-safe pointer to task runner of the |thread_|.
/external/chromium_org/chrome/browser/sync/glue/
H A Dbrowser_thread_model_worker.h50 content::BrowserThread::ID thread_; member in class:browser_sync::BrowserThreadModelWorker
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/src/org/chromium/
H A DIRCProxyWebSocket.java42 Thread thread_; field in class:IRCProxyWebSocket.ChatWebSocket
66 thread_ = new Thread(this);
67 thread_.start();
90 thread_.stop();
/external/chromium_org/chrome/common/
H A Dprofiling.cc91 ProfilingThreadControl() : thread_(NULL) {}
96 if (thread_ && thread_->IsRunning())
98 thread_ = new base::Thread("Profiling_Flush");
99 thread_->Start();
100 thread_->message_loop()->PostTask(
101 FROM_HERE, base::Bind(&FlushProfilingData, thread_));
107 if (!thread_ || !thread_->IsRunning())
109 thread_
115 base::Thread* thread_; member in class:__anon5695::ProfilingThreadControl
[all...]
/external/chromium_org/chrome/test/chromedriver/net/
H A Dport_server_unittest.cc119 PortServerTest() : thread_("server") {
120 EXPECT_TRUE(thread_.Start());
127 thread_.message_loop()->PostTask(
135 base::Thread thread_; member in class:PortServerTest
H A Dtest_http_server.h78 base::Thread thread_; member in class:TestHttpServer
/external/chromium_org/cloud_print/service/win/
H A Dchrome_launcher.h34 scoped_ptr<base::DelegateSimpleThread> thread_; member in class:ChromeLauncher
/external/chromium_org/content/browser/devtools/
H A Ddevtools_http_handler_impl.h119 scoped_ptr<base::Thread> thread_; member in class:content::DevToolsHttpHandlerImpl
/external/chromium_org/content/browser/fileapi/
H A Dcopy_or_move_operation_delegate_unittest.cc142 ScopedThreadStopper(base::Thread* thread) : thread_(thread) {
146 if (thread_) {
149 thread_->message_loop_proxy()->PostTaskAndReply(
152 thread_->Stop();
156 bool is_valid() const { return thread_; }
159 base::Thread* thread_; member in class:content::__anon7100::ScopedThreadStopper
/external/chromium_org/content/browser/media/capture/
H A Ddesktop_capture_device.h55 base::Thread thread_; member in class:content::DesktopCaptureDevice
/external/chromium_org/content/browser/tracing/
H A Detw_system_event_consumer_win.h66 base::Thread thread_; member in class:content::EtwSystemEventConsumer
/external/chromium_org/content/child/
H A Dwebthread_impl.h48 base::MessageLoop* message_loop() const { return thread_->message_loop(); }
54 scoped_ptr<base::Thread> thread_; member in class:content::WebThreadImpl
/external/chromium_org/content/renderer/media/
H A Dwebrtc_local_audio_track_unittest.cc42 thread_(),
48 virtual ~FakeAudioThread() { DCHECK(thread_.is_null()); }
69 0, this, &thread_, base::kThreadPriority_RealtimeAudio);
70 CHECK(!thread_.is_null());
75 base::PlatformThread::Join(thread_);
76 thread_ = base::PlatformThreadHandle();
82 base::PlatformThreadHandle thread_; member in class:content::__anon7773::FakeAudioThread
/external/chromium_org/device/bluetooth/
H A Dbluetooth_socket_thread.h42 scoped_ptr<base::Thread> thread_; member in class:device::BluetoothSocketThread
/external/chromium_org/ipc/
H A Dipc_channel_proxy_unittest.cc242 thread_.reset(new base::Thread("ChannelProxyTestServerThread"));
245 thread_->StartWithOptions(options);
248 CreateChannelProxy(listener_.get(), thread_->message_loop_proxy().get());
255 thread_.reset();
271 scoped_ptr<base::Thread> thread_; member in class:__anon8474::IPCChannelProxyTest
H A Dipc_sync_channel_unittest.cc964 thread_("helper_thread") {
967 thread_.StartWithOptions(options);
969 thread_.message_loop_proxy());
976 base::Thread thread_; member in class:IPC::__anon8488::SyncMessageFilterServer
/external/chromium_org/jingle/glue/
H A Dthread_wrapper_unittest.cc75 thread_->Send(&handler, kTestMessage2, data);
80 : thread_(NULL) {
85 thread_ = rtc::Thread::Current();
90 rtc::Thread* thread_; member in class:jingle_glue::ThreadWrapperTest
101 thread_->Post(&handler1_, kTestMessage1, data1);
102 thread_->Post(&handler1_, kTestMessage2, data2);
103 thread_->Post(&handler2_, kTestMessage1, data3);
104 thread_->Post(&handler2_, kTestMessage1, data4);
130 thread_->PostDelayed(kTestDelayMs1, &handler1_, kTestMessage1, data1);
131 thread_
[all...]

Completed in 2921 milliseconds

12345