Searched refs:thread_ (Results 76 - 100 of 155) sorted by relevance

1234567

/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
/external/chromium_org/tools/android/forwarder2/
H A Dhost_forwarder_main.cc97 if (!thread_.get())
100 thread_->message_loop_proxy()->DeleteSoon(
110 thread_->message_loop_proxy()->PostTask(
129 if (thread_.get())
132 thread_.reset(new base::Thread("HostControllersManagerThread"));
133 thread_->Start();
150 DCHECK(manager->thread_->message_loop_proxy()->RunsTasksOnCurrentThread());
302 scoped_ptr<base::Thread> thread_; member in class:forwarder2::__anon16415::HostControllersManager
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_thread.c96 ok = !pthread_create(&worker->thread_, NULL, thread_loop, worker);
127 pthread_join(worker->thread_, NULL);
/external/stressapptest/src/
H A Dlogger.cc51 LOGGER_ASSERT(0 == pthread_create(&thread_, NULL, &StartRoutine, this));
64 LOGGER_ASSERT(0 == pthread_join(thread_, NULL));
/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/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/mojo/application_manager/
H A Dbackground_shell_application_loader.h56 // Created on |thread_| during construction of |this|. Protected against
59 // that holding a reference won't hold |thread_| from exiting.
63 // Lives on |thread_|.
66 scoped_ptr<base::DelegateSimpleThread> thread_; member in class:mojo::BackgroundShellApplicationLoader
68 // Lives on |thread_|. Trivial interface that calls through to |loader_|.
/external/chromium_org/net/proxy/
H A Dproxy_resolver_v8_tracing.h64 scoped_ptr<base::Thread> thread_; member in class:net::ProxyResolverV8Tracing
H A Dmulti_threaded_proxy_resolver.cc71 // Note that declaration ordering is important here. |thread_| needs to be
73 // executing on |thread_|.
74 scoped_ptr<base::Thread> thread_; member in class:net::MultiThreadedProxyResolver::Executor
295 thread_.reset(new base::Thread(base::StringPrintf("PAC thread #%d",
297 CHECK(thread_->Start());
308 thread_->message_loop()->PostTask(
327 thread_.reset();
350 DCHECK(!thread_.get());
/external/chromium_org/net/socket/
H A Dtcp_listen_socket_unittest.cc33 thread_.reset(new base::Thread("socketio_test"));
34 thread_->StartWithOptions(options);
35 loop_ = reinterpret_cast<base::MessageLoopForIO*>(thread_->message_loop());
86 thread_.reset();
/external/chromium_org/remoting/base/
H A Dauto_thread.h98 base::PlatformThreadHandle thread_; member in class:remoting::AutoThread
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dstunrequest.h72 rtc::Thread* thread_; member in class:cricket::StunRequestManager
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dthread_posix.cc130 thread_(0) {
192 result |= pthread_create(&thread_, &attr_, &StartThread, this);
211 thread_id = static_cast<unsigned int>(thread_);
228 result = pthread_setschedparam(thread_, policy, &param);
/external/chromium_org/third_party/webrtc/test/
H A Dfake_audio_device.h62 scoped_ptr<ThreadWrapper> thread_; member in class:webrtc::test::FakeAudioDevice
H A Dframe_generator_capturer.h62 scoped_ptr<ThreadWrapper> thread_; member in class:webrtc::test::FrameGeneratorCapturer
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
H A Dvie_to_file_renderer.h81 webrtc::scoped_ptr<webrtc::ThreadWrapper> thread_; member in class:ViEToFileRenderer
/external/chromium_org/content/browser/media/capture/
H A Ddesktop_capture_device.cc450 thread_.message_loop_proxy()->PostTask(
458 thread_.message_loop_proxy()->DeleteSoon(FROM_HERE, core_.release());
459 thread_.Stop();
465 thread_.message_loop_proxy()->PostTask(
474 : thread_("desktopCaptureThread") {
482 thread_.StartWithOptions(base::Thread::Options(thread_type, 0));
484 core_.reset(new Core(thread_.message_loop_proxy(), capturer.Pass(), type));
/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
/external/chromium_org/media/filters/
H A Dvideo_renderer_impl.cc39 thread_(),
62 if (!thread_.is_null())
63 base::PlatformThread::Join(thread_);
167 CHECK(base::PlatformThread::Create(0, this, &thread_));
172 ::SetThreadPriority(thread_.platform_handle(), THREAD_PRIORITY_ABOVE_NORMAL);
382 // Avoid needlessly waking up |thread_| unless playing.
/external/chromium_org/tools/android/forwarder/
H A Dforwarder.cc114 : thread_(kInvalidThread),
162 pthread_create(&thread_, NULL, ServerThread, this);
166 if (thread_ != kInvalidThread)
167 pthread_join(thread_, NULL);
182 pthread_t thread_; member in class:__anon16410::Server
/external/chromium_org/mojo/common/
H A Dhandle_watcher.cc204 base::Thread thread_; member in class:mojo::common::WatcherThreadManager
221 thread_.Stop();
249 // |thread_| woke up.
281 // We own |thread_|, so it's safe to use Unretained() here.
282 thread_.message_loop()->PostTask(
289 DCHECK_EQ(thread_.message_loop(), base::MessageLoop::current());
307 : thread_(kWatcherThreadName) {
310 thread_.StartWithOptions(thread_options);
/external/chromium_org/v8/src/base/platform/
H A Dplatform-posix.cc449 PlatformData() : thread_(kNoThread) {}
450 pthread_t thread_; // Thread handle for pthread. member in class:v8::base::Thread::PlatformData
505 DCHECK(thread->data()->thread_ != kNoThread);
532 result = pthread_create(&data_->thread_, &attr, ThreadEntry, this);
537 DCHECK(data_->thread_ != kNoThread);
543 pthread_join(data_->thread_, NULL);
/external/chromium_org/chrome/browser/devtools/device/
H A Dandroid_device_manager.cc417 thread_ = new base::Thread(kDevToolsAdbBridgeThreadName);
420 if (!thread_->StartWithOptions(options)) {
421 delete thread_;
422 thread_ = NULL;
428 return thread_ ? thread_->message_loop_proxy() : NULL;
440 if (!thread_)
445 base::Bind(&HandlerThread::StopThread, thread_));

Completed in 1223 milliseconds

1234567