Searched refs:thread_ids_ (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_netbsd_libcdep.cpp53 SuspendedThreadsListNetBSD() { thread_ids_.reserve(1024); }
65 InternalMmapVector<tid_t> thread_ids_; member in class:__sanitizer::SuspendedThreadsListNetBSD
317 CHECK_LT(index, thread_ids_.size());
318 return thread_ids_[index];
322 return thread_ids_.size();
326 for (uptr i = 0; i < thread_ids_.size(); i++) {
327 if (thread_ids_[i] == thread_id)
334 thread_ids_.push_back(tid);
H A Dsanitizer_stoptheworld_linux_libcdep.cpp90 SuspendedThreadsListLinux() { thread_ids_.reserve(1024); }
102 InternalMmapVector<tid_t> thread_ids_; member in class:__sanitizer::SuspendedThreadsListLinux
516 CHECK_LT(index, thread_ids_.size());
517 return thread_ids_[index];
521 return thread_ids_.size();
525 for (uptr i = 0; i < thread_ids_.size(); i++) {
526 if (thread_ids_[i] == thread_id) return true;
532 thread_ids_.push_back(tid);

Completed in 172 milliseconds