HomeSort by relevance Sort by last modified time
    Searched refs:threads_ (Results 1 - 25 of 27) 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 30 threads_.reserve(num_threads);
32 threads_.push_back(thread([this]() { Loop(); }));
52 for (thread& th : threads_) {
81 vector<thread> threads_; member in class:ThreadPoolImpl
  /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
linux_core_dumper.cc 211 threads_.push_back(pid);
linux_dumper.cc 80 threads_(&allocator_, 8),
  /external/libchrome/base/threading/
simple_thread.cc 100 DCHECK(threads_.empty());
106 DCHECK(threads_.empty()) << "Start() called with outstanding threads.";
110 threads_.push_back(thread);
115 DCHECK(!threads_.empty()) << "JoinAll() called with no outstanding threads.";
122 threads_[i]->Join();
123 delete threads_[i];
125 threads_.clear();
sequenced_worker_pool.cc 452 ThreadMap threads_; member in class:base::SequencedWorkerPool::Inner
586 for (ThreadMap::iterator it = threads_.begin(); it != threads_.end(); ++it)
588 threads_.clear();
636 threads_.find(PlatformThread::CurrentId());
637 if (found != threads_.end() && found->second->is_processing_task() &&
682 return ContainsKey(threads_, PlatformThread::CurrentId());
688 ThreadMap::const_iterator found = threads_.find(PlatformThread::CurrentId());
689 if (found == threads_.end())
706 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/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/iotop/
taskstats.h 44 int threads() const { return threads_; }
77 int threads_; member in class:TaskStatistics
taskstats.cpp 198 threads_ = 1;
214 threads_++;
  /external/libvpx/libvpx/test/
encode_perf_test.cc 69 threads_(1) {}
89 cfg_.g_threads = threads_;
126 threads_ = threads;
134 unsigned int threads_; member in class:__anon16426::VP9EncodePerfTest
  /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
  /art/runtime/
thread_pool.h 84 return threads_.size();
143 std::vector<ThreadPoolWorker*> threads_; member in class:art::ThreadPool
thread_pool.cc 125 threads_.push_back(
149 STLDeleteElements(&threads_);
236 for (ThreadPoolWorker* worker : threads_) {
  /external/v8/src/wasm/
wasm-interpreter.cc 1700 ZoneVector<ThreadImpl*> threads_; member in class:v8::internal::wasm::WasmInterpreterInternals
    [all...]

Completed in 1199 milliseconds

1 2