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

  /build/kati/
thread_pool.cc 32 threads_.reserve(num_threads);
34 threads_.push_back(thread([this]() { Loop(); }));
54 for (thread& th : threads_) {
83 vector<thread> threads_; member in class:ThreadPoolImpl
  /external/libchrome/base/win/
scoped_handle_test_dll.cc 39 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_) {
  /system/extras/memory_replay/
Threads.h 43 Thread* threads_ = nullptr; member in class:Threads
  /toolchain/binutils/binutils-2.25/gold/
workqueue-internal.h 104 int threads_; member in class:gold::Workqueue_threader_threadpool
  /external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
SimpleThreadPool.h 25 : 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
NonBlockingThreadPool.h 24 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/google-breakpad/src/client/linux/minidump_writer/
linux_dumper.h 86 // 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
  /art/runtime/
thread_pool.h 88 return threads_.size();
92 return threads_;
162 std::vector<ThreadPoolWorker*> threads_; member in class:art::ThreadPool
  /external/libchrome/base/threading/
simple_thread.h 185 std::vector<DelegateSimpleThread*> threads_; member in class:base::DelegateSimpleThreadPool
  /external/libvpx/libvpx/test/
encode_perf_test.cc 62 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:__anon24360::VP9EncodePerfTest
vp9_ethread_test.cc 226 tiles_(GET_PARAM(3)), threads_(GET_PARAM(4)),
309 int threads_; member in class:__anon24407::VPxEncoderThreadTest
334 cfg_.g_threads = threads_;
370 cfg_.g_threads = threads_;
388 cfg_.g_threads = threads_;
  /system/core/libmemunreachable/tests/
ThreadCapture_test.cpp 55 threads_.reserve(threads);
58 threads_.emplace_back([&, i, threads, this]() {
89 for (auto i = threads_.begin(); i != threads_.end(); i++) {
92 threads_.clear();
123 std::vector<std::thread> threads_; member in class:ThreadListTest
  /system/extras/iotop/
taskstats.h 44 int threads() const { return threads_; }
77 int threads_; member in class:TaskStatistics
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.h 93 return threads_[tid];
136 ThreadContextBase **threads_; // Array of thread contexts is leaked. member in class:__sanitizer::ThreadRegistry
  /external/google-breakpad/src/google_breakpad/processor/
process_state.h 106 const vector<CallStack*>* threads() const { return &threads_; }
165 vector<CallStack*> threads_; member in class:google_breakpad::ProcessState
minidump.h 355 MinidumpThreads* threads_; member in class:google_breakpad::MinidumpThreadList
    [all...]
  /system/extras/simpleperf/
event_selection_set.h 97 threads_.insert(threads.begin(), threads.end());
102 const std::set<pid_t>& GetMonitoredThreads() const { return threads_; }
105 return !processes_.empty() || !threads_.empty();
161 std::set<pid_t> threads_; member in class:EventSelectionSet
inplace_sampler_lib.cpp 89 std::map<int, ThreadInfo> threads_; member in class:__anon106985::SampleManager
235 auto it = threads_.find(tid);
236 if (it == threads_.end() || it->second.name != pair.second) {
237 threads_[tid].name = pair.second;
252 for (auto it = threads_.begin(); it != threads_.end();) {
255 it = threads_.erase(it);
  /external/v8/src/wasm/
wasm-interpreter.cc 1764 ZoneVector<ThreadImpl*> threads_; member in class:v8::internal::wasm::WasmInterpreterInternals
    [all...]

Completed in 546 milliseconds