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 58 class ThreadLister {
60 explicit ThreadLister(int pid);
61 ~ThreadLister();
sanitizer_linux.cc 734 // ThreadLister implementation.
735 ThreadLister::ThreadLister(int pid)
755 int ThreadLister::GetNextTID() {
772 void ThreadLister::Reset() {
778 ThreadLister::~ThreadLister() {
783 bool ThreadLister::error() { return error_; }
785 bool ThreadLister::GetDirectoryEntries() {
    [all...]
sanitizer_stoptheworld_linux_libcdep.cc 191 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 351 milliseconds