Searched defs:threads_ (Results 1 - 11 of 11) sorted by relevance

/external/libchrome/base/win/
H A Dscoped_handle_test_dll.cc39 std::vector<HANDLE> threads_; local
63 threads_.push_back(thread_handle);
68 if (threads_.size() != kNumThreads) {
69 for (const auto& thread : threads_)
77 for (const auto& thread : threads_) {
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dlinux_dumper.h86 // Read information about the |index|-th thread of |threads_|.
91 const wasteful_vector<pid_t> &threads() { return threads_; }
178 wasteful_vector<pid_t> threads_; member in class:google_breakpad::LinuxDumper
/external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
H A DSimpleThreadPool.h25 : env_(env), threads_(num_threads), waiters_(num_threads) {
27 threads_.push_back(env.CreateThread([this, i]() { WorkerLoop(i); }));
51 for (auto t : threads_) {
73 return static_cast<int>(threads_.size());
138 MaxSizeVector<Thread*> threads_; // All threads member in class:Eigen::SimpleThreadPoolTempl
H A DNonBlockingThreadPool.h24 threads_(num_threads),
58 threads_.push_back(env_.CreateThread([this, i]() { WorkerLoop(i); }));
70 for (size_t i = 0; i < threads_.size(); i++) delete threads_[i];
71 for (size_t i = 0; i < threads_.size(); i++) delete queues_[i];
101 return static_cast<int>(threads_.size());
125 MaxSizeVector<Thread*> threads_; member in class:Eigen::NonBlockingThreadPoolTempl
211 if (done_ && blocked_ == threads_.size()) {
/external/libchrome/base/threading/
H A Dsimple_thread.h185 std::vector<DelegateSimpleThread*> threads_; member in class:base::DelegateSimpleThreadPool
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_registry.h93 return threads_[tid];
136 ThreadContextBase **threads_; // Array of thread contexts is leaked. member in class:__sanitizer::ThreadRegistry
/external/google-breakpad/src/google_breakpad/processor/
H A Dprocess_state.h106 const vector<CallStack*>* threads() const { return &threads_; }
165 vector<CallStack*> threads_; member in class:google_breakpad::ProcessState
H A Dminidump.h355 MinidumpThreads* threads_; member in class:google_breakpad::MinidumpThreadList
/external/libvpx/libvpx/test/
H A Dencode_perf_test.cc62 encoding_mode_(GET_PARAM(1)), speed_(0), threads_(1) {}
82 cfg_.g_threads = threads_;
114 void set_threads(unsigned int threads) { threads_ = threads; }
121 unsigned int threads_; member in class:__anon11730::VP9EncodePerfTest
H A Dvp9_ethread_test.cc226 tiles_(GET_PARAM(3)), threads_(GET_PARAM(4)),
309 int threads_; member in class:__anon11777::VPxEncoderThreadTest
334 cfg_.g_threads = threads_;
370 cfg_.g_threads = threads_;
388 cfg_.g_threads = threads_;
/external/v8/src/wasm/
H A Dwasm-interpreter.cc1764 ZoneVector<ThreadImpl*> threads_; member in class:v8::internal::wasm::WasmInterpreterInternals
1769 threads_(zone) {
1770 threads_.push_back(new ThreadImpl(zone, &codemap_, instance));
1775 for (auto t : threads_) delete t;
1776 threads_.resize(0);
1790 void WasmInterpreter::Run() { internals_->threads_[0]->Run(); }
1792 void WasmInterpreter::Pause() { internals_->threads_[0]->Pause(); }
1837 return internals_->threads_[id];

Completed in 261 milliseconds