Home
last modified time | relevance | path

Searched refs:threads_ (Results 1 – 6 of 6) sorted by relevance

/external/chromium/base/threading/
Dsimple_thread.cc87 DCHECK(threads_.empty()); in ~DelegateSimpleThreadPool()
93 DCHECK(threads_.empty()) << "Start() called with outstanding threads."; in Start()
97 threads_.push_back(thread); in Start()
102 DCHECK(!threads_.empty()) << "JoinAll() called with no outstanding threads."; in JoinAll()
109 threads_[i]->Join(); in JoinAll()
110 delete threads_[i]; in JoinAll()
112 threads_.clear(); in JoinAll()
Dsimple_thread.h176 std::vector<DelegateSimpleThread*> threads_; variable
/external/chromium/third_party/libjingle/source/talk/base/
Dthread.cc147 threads_.push_back(thread); in Add()
152 threads_.erase(std::remove(threads_.begin(), threads_.end(), thread), in Remove()
153 threads_.end()); in Remove()
159 for (size_t i = 0; i < g_thmgr.threads_.size(); ++i) { in StopAllThreads_()
160 g_thmgr.threads_[i]->Stop(); in StopAllThreads_()
Dthread.h80 std::vector<Thread *> threads_; variable
/external/chromium/chrome/common/deprecated/
Devent_sys_unittest.cc152 for (size_t i = 0; i < threads_.size(); i++) { in ~ThreadTester()
153 base::PlatformThread::Join(threads_[i].thread); in ~ThreadTester()
182 threads_.push_back(info); in Go()
233 std::vector<ThreadInfo> threads_; member in __anond4e5cfc00111::ThreadTester
/external/chromium/third_party/libjingle/
Dmods-since-v0_4_0.diff1141 > return(std::find(threads_.begin(), threads_.end(), thread) != threads_.end());