Searched refs:threads_ (Results 1 – 3 of 3) sorted by relevance
126 *total = threads_.size(); in GetNumberOfThreads()143 } else if (threads_.size() < max_threads_) { in CreateThread()145 tid = threads_.size(); in CreateThread()147 threads_.push_back(tctx); in CreateThread()181 for (u32 tid = 0; tid < threads_.size(); tid++) { in RunCallbackForEachThreadLocked()182 ThreadContextBase *tctx = threads_[tid]; in RunCallbackForEachThreadLocked()191 for (u32 tid = 0; tid < threads_.size(); tid++) { in FindThread()192 ThreadContextBase *tctx = threads_[tid]; in FindThread()202 for (u32 tid = 0; tid < threads_.size(); tid++) { in FindThreadContextLocked()203 ThreadContextBase *tctx = threads_[tid]; in FindThreadContextLocked()[all …]
45 InternalMmapVector<SuspendedThreadInfo> threads_; member in __sanitizer::SuspendedThreadsListMac115 CHECK_LT(index, threads_.size()); in GetThreadID()116 return threads_[index].tid; in GetThreadID()120 CHECK_LT(index, threads_.size()); in GetThread()121 return threads_[index].thread; in GetThread()125 return threads_.size(); in ThreadCount()129 for (uptr i = 0; i < threads_.size(); i++) { in ContainsThread()130 if (threads_[i].thread == thread) return true; in ContainsThread()144 threads_.push_back({info.thread_id, thread}); in Append()
104 return threads_.empty() ? nullptr : threads_[tid]; in GetThreadLocked()107 u32 NumThreadsLocked() const { return threads_.size(); } in NumThreadsLocked()155 InternalMmapVector<ThreadContextBase *> threads_; variable