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 31 class ThreadLister {
33 explicit ThreadLister(int pid);
34 ~ThreadLister();
sanitizer_linux.cc 615 // ThreadLister implementation.
616 ThreadLister::ThreadLister(int pid)
634 int ThreadLister::GetNextTID() {
651 void ThreadLister::Reset() {
657 ThreadLister::~ThreadLister() {
662 bool ThreadLister::error() { return error_; }
664 bool ThreadLister::GetDirectoryEntries() {
sanitizer_stoptheworld_linux.cc 144 void *mem = InternalAlloc(sizeof(ThreadLister));
145 ThreadLister *thread_lister = new(mem) ThreadLister(pid_);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_linux_test.cc 121 static std::vector<pid_t> ReadTidsToVector(ThreadLister *thread_lister) {
141 // ThreadLister's output should include the current thread's TID and the TID of
145 ThreadLister thread_lister(getpid());
151 // Calling Reset() should not cause ThreadLister to forget any threads it's
154 ThreadLister thread_lister(getpid());
165 // If new threads have spawned during ThreadLister object's lifetime, calling
166 // Reset() should cause ThreadLister to recognize their existence.
168 ThreadLister thread_lister(getpid());

Completed in 49 milliseconds