Searched defs:thread_lister (Results 1 - 1 of 1) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_linux_test.cc123 static std::vector<pid_t> ReadTidsToVector(ThreadLister *thread_lister) { argument
126 while ((tid = thread_lister->GetNextTID()) >= 0)
128 EXPECT_FALSE(thread_lister->error());
147 ThreadLister thread_lister(getpid());
148 std::vector<pid_t> listed_tids = ReadTidsToVector(&thread_lister);
156 ThreadLister thread_lister(getpid());
161 thread_lister.Reset();
162 std::vector<pid_t> listed_tids = ReadTidsToVector(&thread_lister);
170 ThreadLister thread_lister(getpid());
171 std::vector<pid_t> threads_before_extra = ReadTidsToVector(&thread_lister);
[all...]

Completed in 83 milliseconds