HomeSort by relevance Sort by last modified time
    Searched refs:threads_ (Results 1 - 14 of 14) sorted by null

  /external/chromium/base/threading/
simple_thread.cc 87 DCHECK(threads_.empty());
93 DCHECK(threads_.empty()) << "Start() called with outstanding threads.";
97 threads_.push_back(thread);
102 DCHECK(!threads_.empty()) << "JoinAll() called with no outstanding threads.";
109 threads_[i]->Join();
110 delete threads_[i];
112 threads_.clear();
simple_thread.h 176 std::vector<DelegateSimpleThread*> threads_; member in class:base::DelegateSimpleThreadPool
  /external/chromium_org/native_client_sdk/src/libraries/sdk_util/
thread_pool.cc 19 : threads_(NULL), counter_(0), num_threads_(num_threads), exiting_(false),
33 threads_ = new pthread_t[num_threads_];
35 status = pthread_create(&threads_[i], NULL, WorkerThreadEntry, this);
48 delete[] threads_;
78 pthread_join(threads_[i], &retval);
thread_pool.h 39 pthread_t* threads_; member in class:sdk_util::ThreadPool
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.cc 101 threads_ = (ThreadContextBase **)MmapOrDie(max_threads_ * sizeof(threads_[0]),
131 threads_[tid] = tctx;
155 ThreadContextBase *tctx = threads_[tid];
165 ThreadContextBase *tctx = threads_[tid];
176 ThreadContextBase *tctx = threads_[tid];
197 ThreadContextBase *tctx = threads_[tid];
206 ThreadContextBase *tctx = threads_[tid];
223 ThreadContextBase *tctx = threads_[tid];
240 ThreadContextBase *tctx = threads_[tid]
    [all...]
sanitizer_thread_registry.h 91 return threads_[tid];
132 ThreadContextBase **threads_; // Array of thread contexts is leaked. member in class:__sanitizer::ThreadRegistry
  /external/chromium_org/base/threading/
simple_thread.cc 94 DCHECK(threads_.empty());
100 DCHECK(threads_.empty()) << "Start() called with outstanding threads.";
104 threads_.push_back(thread);
109 DCHECK(!threads_.empty()) << "JoinAll() called with no outstanding threads.";
116 threads_[i]->Join();
117 delete threads_[i];
119 threads_.clear();
sequenced_worker_pool.cc 425 ThreadMap threads_; member in class:base::SequencedWorkerPool::Inner
540 for (ThreadMap::iterator it = threads_.begin(); it != threads_.end(); ++it)
542 threads_.clear();
624 return ContainsKey(threads_, PlatformThread::CurrentId());
630 ThreadMap::const_iterator found = threads_.find(PlatformThread::CurrentId());
631 if (found == threads_.end())
644 if (pending_tasks_.empty() && waiting_thread_count_ == threads_.size())
711 threads_.insert(
830 cleanup_idlers_ != threads_.size() - 1)
    [all...]
simple_thread.h 182 std::vector<DelegateSimpleThread*> threads_; member in class:base::DelegateSimpleThreadPool
  /art/runtime/
thread_pool.h 67 return threads_.size();
119 std::vector<ThreadPoolWorker*> threads_; member in class:art::ThreadPool
thread_pool.cc 89 threads_.push_back(new ThreadPoolWorker(this, name, ThreadPoolWorker::kDefaultStackSize));
112 STLDeleteElements(&threads_);
279 threads_.push_back(new WorkStealingWorker(this, name, ThreadPoolWorker::kDefaultStackSize));
292 WorkStealingWorker* worker = down_cast<WorkStealingWorker*>(threads_[steal_index_]);
  /external/chromium/chrome/common/deprecated/
event_sys_unittest.cc 152 for (size_t i = 0; i < threads_.size(); i++) {
153 base::PlatformThread::Join(threads_[i].thread);
182 threads_.push_back(info);
233 std::vector<ThreadInfo> threads_; member in class:__anon5241::ThreadTester
  /external/chromium/third_party/libjingle/source/talk/base/
thread.cc 147 threads_.push_back(thread);
152 threads_.erase(std::remove(threads_.begin(), threads_.end(), thread),
153 threads_.end());
159 for (size_t i = 0; i < g_thmgr.threads_.size(); ++i) {
160 g_thmgr.threads_[i]->Stop();
thread.h 80 std::vector<Thread *> threads_; member in class:talk_base::ThreadManager

Completed in 355 milliseconds