Lines Matching refs:ThreadSpec
16 const char *ThreadSpec::g_option_names[static_cast<uint32_t>(
17 ThreadSpec::OptionNames::LastOptionName)]{"Index", "ID", "Name",
20 ThreadSpec::ThreadSpec() : m_name(), m_queue_name() {} in ThreadSpec() function in ThreadSpec
22 std::unique_ptr<ThreadSpec> ThreadSpec::CreateFromStructuredData( in CreateFromStructuredData()
29 std::unique_ptr<ThreadSpec> thread_spec_up(new ThreadSpec()); in CreateFromStructuredData()
53 StructuredData::ObjectSP ThreadSpec::SerializeToStructuredData() { in SerializeToStructuredData()
68 const char *ThreadSpec::GetName() const { in GetName()
72 const char *ThreadSpec::GetQueueName() const { in GetQueueName()
76 bool ThreadSpec::TIDMatches(Thread &thread) const { in TIDMatches()
84 bool ThreadSpec::IndexMatches(Thread &thread) const { in IndexMatches()
91 bool ThreadSpec::NameMatches(Thread &thread) const { in NameMatches()
99 bool ThreadSpec::QueueNameMatches(Thread &thread) const { in QueueNameMatches()
107 bool ThreadSpec::ThreadPassesBasicTests(Thread &thread) const { in ThreadPassesBasicTests()
126 bool ThreadSpec::HasSpecification() const { in HasSpecification()
131 void ThreadSpec::GetDescription(Stream *s, lldb::DescriptionLevel level) const { in GetDescription()