Searched refs:thread_ (Results 51 - 75 of 155) sorted by relevance

1234567

/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/helpers/
H A Dvie_to_file_renderer.cc47 thread_(webrtc::ThreadWrapper::CreateThread(
77 return thread_->Start(tid);
82 if (thread_.get() != NULL) {
83 thread_->SetNotAlive();
87 while (!thread_->Stop()) continue;
/external/chromium_org/base/threading/
H A Dsimple_thread.cc16 thread_(), event_(true, false), tid_(0), joined_(false) {
22 thread_(), event_(true, false), tid_(0), joined_(false) {
32 bool success = PlatformThread::Create(options_.stack_size(), this, &thread_);
41 PlatformThread::Join(thread_);
H A Dthread.cc77 thread_(0),
108 if (!PlatformThread::Create(options.stack_size, this, &thread_)) {
137 PlatformThread::Join(thread_);
170 PlatformThread::SetThreadPriority(thread_, priority);
H A Dthread.h166 PlatformThreadHandle thread_handle() { return thread_; }
226 PlatformThreadHandle thread_; member in class:base::Thread
/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
H A Detw_system_event_consumer_win.cc33 : thread_("EtwConsumerThread") {
46 thread_.Start();
47 thread_.message_loop()->PostTask(
66 thread_.message_loop()->PostTask(FROM_HERE,
76 thread_.Stop();
/external/chromium_org/media/audio/
H A Daudio_device_thread.h109 scoped_refptr<AudioDeviceThread::Thread> thread_; member in class:media::AudioDeviceThread
H A Dclockless_audio_sink.h43 scoped_ptr<ClocklessAudioSinkThread> thread_; member in class:media::ClocklessAudioSink
/external/chromium_org/mojo/apps/js/
H A Djs_app.h51 base::Thread thread_; member in class:mojo::apps::JSApp
/external/chromium_org/net/disk_cache/
H A Dcache_creator.cc52 scoped_refptr<base::SingleThreadTaskRunner> thread_; member in class:__anon9163::CacheCreator
79 thread_(thread),
99 path_, max_bytes_, type_, thread_, net_log_);
110 new disk_cache::BackendImpl(path_, thread_, net_log_);
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dbasicpacketsocketfactory.h62 Thread* thread_; member in class:rtc::BasicPacketSocketFactory
H A Dturnserver.cc132 rtc::Thread* thread_; member in class:cricket::TurnServer::Allocation
159 rtc::Thread* thread_; member in class:cricket::TurnServer::Permission
181 rtc::Thread* thread_; member in class:cricket::TurnServer::Channel
208 : thread_(thread),
535 thread_, *conn, external_socket, key);
650 thread_(thread),
667 thread_->Clear(this, MSG_ALLOCATION_TIMEOUT);
712 thread_->PostDelayed(lifetime_secs * 1000, this, MSG_ALLOCATION_TIMEOUT);
739 thread_->Clear(this, MSG_ALLOCATION_TIMEOUT);
740 thread_
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dthread_posix.h68 pthread_t thread_; member in class:webrtc::ThreadPosix
H A Dthread_win.h56 HANDLE thread_; member in class:webrtc::ThreadWindows
/external/chromium_org/third_party/webrtc/test/
H A Ddirect_transport.h51 scoped_ptr<ThreadWrapper> thread_; member in class:webrtc::test::DirectTransport
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/fakes/
H A Dfake_external_transport.h35 webrtc::ThreadWrapper* thread_; member in class:FakeExternalTransport
/external/chromium_org/tools/android/forwarder2/
H A Ddevice_listener.h98 base::Thread thread_; member in class:forwarder2::DeviceListener
H A Dhost_controller.h88 base::Thread thread_; member in class:forwarder2::HostController
H A Dhost_controller.cc63 thread_.Start();
83 thread_("HostControllerThread") {
87 thread_.message_loop_proxy()->PostTask(
/external/stressapptest/src/
H A Dlogger.h126 pthread_t thread_; member in class:Logger
/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/browser/devtools/
H A Ddevtools_http_handler_impl.cc208 DCHECK(thread_.get() == NULL);
213 if (thread_)
215 thread_.reset(new base::Thread(kDevToolsHandlerThreadName));
225 if (!thread_->StartWithOptions(options)) {
232 thread_->message_loop()->PostTask(
238 thread_.reset();
247 if (!thread_)
256 if (!thread_)
652 if (!thread_)
677 thread_
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_thread.c26 pthread_t thread_; member in struct:VP9WorkerImpl
111 ok = !pthread_create(&worker->impl_->thread_, NULL, thread_loop, worker);
150 pthread_join(worker->impl_->thread_, NULL);
/external/chromium_org/chrome/browser/printing/
H A Dprint_job_worker.cc92 : owner_(owner), thread_("Printing_Worker"), weak_factory_(this) {
308 return thread_.IsRunning();
319 thread_.StopSoon();
323 thread_.Stop();
327 bool result = thread_.Start();
328 task_runner_ = thread_.task_runner();

Completed in 532 milliseconds

1234567