HomeSort by: relevance | last modified time | path
    Searched defs:threads_ (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stoptheworld_mac.cc 33 SuspendedThreadsListMac() : threads_(1024) {}
46 InternalMmapVector<SuspendedThreadInfo> threads_; member in class:__sanitizer::SuspendedThreadsListMac
112 CHECK_LT(index, threads_.size());
113 return threads_[index].tid;
117 CHECK_LT(index, threads_.size());
118 return threads_[index].thread;
122 return threads_.size();
126 for (uptr i = 0; i < threads_.size(); i++) {
127 if (threads_[i].thread == thread) return true;
141 threads_.push_back({info.thread_id, thread})
    [all...]
sanitizer_thread_registry.h 99 return threads_[tid];
143 ThreadContextBase **threads_; // Array of thread contexts is leaked. member in class:__sanitizer::ThreadRegistry

Completed in 12 milliseconds