Home | History | Annotate | Download | only in Target

Lines Matching refs:thread

10 #include "lldb/Target/Thread.h"
61 ThreadSpec::TIDMatches (Thread &thread) const
66 lldb::tid_t thread_id = thread.GetID();
70 ThreadSpec::IndexMatches (Thread &thread) const
74 uint32_t index = thread.GetIndexID();
78 ThreadSpec::NameMatches (Thread &thread) const
83 const char *name = thread.GetName();
87 ThreadSpec::QueueNameMatches (Thread &thread) const
92 const char *queue_name = thread.GetQueueName();
97 ThreadSpec::ThreadPassesBasicTests (Thread &thread) const
103 if (!TIDMatches(thread))
106 if (!IndexMatches(thread))
109 if (!NameMatches (thread))
112 if (!QueueNameMatches (thread))
131 s->PutCString("thread spec: no ");
138 s->PutCString("thread spec: yes ");
150 s->Printf ("thread name: \"%s\" ", name);