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

1 2

  /external/google-breakpad/src/processor/
process_state.cc 54 for (vector<CallStack *>::const_iterator iterator = threads_.begin();
55 iterator != threads_.end();
59 threads_.clear();
microdump_processor.cc 91 process_state->threads_.push_back(stack.release());
  /system/extras/memory_replay/
Threads.cpp 65 threads_ = new (memory) Thread[max_threads_];
69 if (threads_) {
70 munmap(threads_, data_size_);
71 threads_ = nullptr;
99 pid_t cur_tid = threads_[index].tid_;
101 return threads_ + index;
115 pid_t cur_tid = threads_[i].tid_;
118 threads_[i].WaitForReady();
130 if (threads_[index].tid_ == 0) {
131 return threads_ + index
    [all...]
Threads.h 43 Thread* threads_ = nullptr; member in class:Threads
  /toolchain/binutils/binutils-2.25/gold/
workqueue-threads.cc 135 threads_(1)
157 create = this->desired_thread_count_ - this->threads_;
168 new Workqueue_thread(this, this->threads_);
169 ++this->threads_;
187 --this->threads_;
188 if (this->threads_ <= this->desired_thread_count_)
workqueue-internal.h 104 int threads_; member in class:gold::Workqueue_threader_threadpool
  /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_) {
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_ptrace_dumper.cc 157 if (index >= threads_.size())
160 pid_t tid = threads_[index];
281 for (size_t i = 0; i < threads_.size(); ++i) {
282 if (!SuspendThread(threads_[i])) {
286 if (i < threads_.size() - 1) {
287 my_memmove(&threads_[i], &threads_[i + 1],
288 (threads_.size() - i - 1) * sizeof(threads_[i]));
290 threads_.resize(threads_.size() - 1)
    [all...]
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
  /external/libchrome/base/threading/
simple_thread.cc 109 DCHECK(threads_.empty());
115 DCHECK(threads_.empty()) << "Start() called with outstanding threads.";
119 threads_.push_back(thread);
124 DCHECK(!threads_.empty()) << "JoinAll() called with no outstanding threads.";
131 threads_[i]->Join();
132 delete threads_[i];
134 threads_.clear();
sequenced_worker_pool.cc 451 ThreadMap threads_;
585 for (ThreadMap::iterator it = threads_.begin(); it != threads_.end(); ++it)
587 threads_.clear();
635 threads_.find(PlatformThread::CurrentId());
636 if (found != threads_.end() && found->second->is_processing_task() &&
681 return ContainsKey(threads_, PlatformThread::CurrentId());
687 ThreadMap::const_iterator found = threads_.find(PlatformThread::CurrentId());
688 if (found == threads_.end())
705 ThreadMap::const_iterator found = threads_.find(PlatformThread::CurrentId())
    [all...]
simple_thread.h 185 std::vector<DelegateSimpleThread*> threads_; member in class:base::DelegateSimpleThreadPool
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.cc 102 threads_ = (ThreadContextBase **)MmapOrDie(max_threads_ * sizeof(threads_[0]),
132 threads_[tid] = tctx;
161 ThreadContextBase *tctx = threads_[tid];
171 ThreadContextBase *tctx = threads_[tid];
182 ThreadContextBase *tctx = threads_[tid];
203 ThreadContextBase *tctx = threads_[tid];
212 ThreadContextBase *tctx = threads_[tid];
224 ThreadContextBase *tctx = threads_[tid];
242 ThreadContextBase *tctx = threads_[tid]
    [all...]
sanitizer_thread_registry.h 93 return threads_[tid];
136 ThreadContextBase **threads_; // Array of thread contexts is leaked. member in class:__sanitizer::ThreadRegistry
  /external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
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()) {
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
  /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
  /system/extras/iotop/
taskstats.h 44 int threads() const { return threads_; }
77 int threads_; member in class:TaskStatistics
  /art/runtime/
thread_pool.h 88 return threads_.size();
92 return threads_;
162 std::vector<ThreadPoolWorker*> threads_; member in class:art::ThreadPool
  /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/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);
  /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

Completed in 671 milliseconds

1 2