Home | History | Annotate | Download | only in audio

Lines Matching refs:thread_

53   base::PlatformThreadHandle thread_;
67 AudioDeviceThread::~AudioDeviceThread() { DCHECK(!thread_.get()); }
73 CHECK(thread_.get() == NULL);
74 thread_ = new AudioDeviceThread::Thread(callback, socket, thread_name);
75 thread_->Start();
80 if (thread_.get()) {
81 thread_->Stop(loop_for_join);
82 thread_ = NULL;
88 return thread_.get() == NULL;
95 : thread_(),
102 DCHECK(thread_.is_null());
107 DCHECK(thread_.is_null());
111 PlatformThread::CreateWithPriority(0, this, &thread_,
113 CHECK(!thread_.is_null());
124 std::swap(thread, thread_);