HomeSort by relevance Sort by last modified time
    Searched refs:ThreadLister (Results 1 - 4 of 4) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.h 53 class ThreadLister {
55 explicit ThreadLister(int pid);
56 ~ThreadLister();
sanitizer_linux.cc 605 // ThreadLister implementation.
606 ThreadLister::ThreadLister(int pid)
626 int ThreadLister::GetNextTID() {
643 void ThreadLister::Reset() {
649 ThreadLister::~ThreadLister() {
654 bool ThreadLister::error() { return error_; }
656 bool ThreadLister::GetDirectoryEntries() {
sanitizer_stoptheworld_linux_libcdep.cc 149 ThreadLister thread_lister(pid_);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_linux_test.cc 123 static std::vector<pid_t> ReadTidsToVector(ThreadLister *thread_lister) {
143 // ThreadLister's output should include the current thread's TID and the TID of
147 ThreadLister thread_lister(getpid());
153 // Calling Reset() should not cause ThreadLister to forget any threads it's
156 ThreadLister thread_lister(getpid());
167 // If new threads have spawned during ThreadLister object's lifetime, calling
168 // Reset() should cause ThreadLister to recognize their existence.
170 ThreadLister thread_lister(getpid());

Completed in 60 milliseconds