OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThreadLister
(Results
1 - 4
of
4
) sorted by null
/external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.h
34
class
ThreadLister
{
36
explicit
ThreadLister
(int pid);
37
~
ThreadLister
();
sanitizer_linux.cc
554
//
ThreadLister
implementation.
555
ThreadLister
::
ThreadLister
(int pid)
575
int
ThreadLister
::GetNextTID() {
592
void
ThreadLister
::Reset() {
598
ThreadLister
::~
ThreadLister
() {
603
bool
ThreadLister
::error() { return error_; }
605
bool
ThreadLister
::GetDirectoryEntries() {
sanitizer_stoptheworld_linux_libcdep.cc
156
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 35 milliseconds