Home
last modified time | relevance | path

Searched refs:ThreadSpec (Results 1 – 15 of 15) sorted by relevance

/external/llvm-project/lldb/source/Target/
DThreadSpec.cpp16 const char *ThreadSpec::g_option_names[static_cast<uint32_t>(
17 ThreadSpec::OptionNames::LastOptionName)]{"Index", "ID", "Name",
20 ThreadSpec::ThreadSpec() in ThreadSpec() function in ThreadSpec
24 std::unique_ptr<ThreadSpec> ThreadSpec::CreateFromStructuredData( in CreateFromStructuredData()
31 std::unique_ptr<ThreadSpec> thread_spec_up(new ThreadSpec()); in CreateFromStructuredData()
55 StructuredData::ObjectSP ThreadSpec::SerializeToStructuredData() { in SerializeToStructuredData()
70 const char *ThreadSpec::GetName() const { in GetName()
74 const char *ThreadSpec::GetQueueName() const { in GetQueueName()
78 bool ThreadSpec::TIDMatches(Thread &thread) const { in TIDMatches()
86 bool ThreadSpec::IndexMatches(Thread &thread) const { in IndexMatches()
[all …]
DCMakeLists.txt68 ThreadSpec.cpp
DThread.cpp1053 bool Thread::MatchesSpec(const ThreadSpec *spec) { in MatchesSpec()
DTarget.cpp3232 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in StopHook()
3239 void Target::StopHook::SetThreadSpecifier(ThreadSpec *specifier) { in SetThreadSpecifier()
/external/llvm-project/lldb/source/Breakpoint/
DWatchpointOptions.cpp39 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in WatchpointOptions()
49 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in operator =()
105 const ThreadSpec *WatchpointOptions::GetThreadSpecNoCreate() const { in GetThreadSpecNoCreate()
109 ThreadSpec *WatchpointOptions::GetThreadSpec() { in GetThreadSpec()
111 m_thread_spec_up = std::make_unique<ThreadSpec>(); in GetThreadSpec()
DBreakpointOptions.cpp157 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in BreakpointOptions()
173 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in operator =()
227 std::make_unique<ThreadSpec>(*incoming.m_thread_spec_up); in CopyOverSetOptions()
346 ThreadSpec::GetSerializationKey(), thread_spec_dict); in CreateFromStructuredData()
349 std::unique_ptr<ThreadSpec> thread_spec_up = in CreateFromStructuredData()
350 ThreadSpec::CreateFromStructuredData(*thread_spec_dict, in CreateFromStructuredData()
395 options_dict_sp->AddItem(ThreadSpec::GetSerializationKey(), thread_spec_sp); in SerializeToStructuredData()
506 const ThreadSpec *BreakpointOptions::GetThreadSpecNoCreate() const { in GetThreadSpecNoCreate()
510 ThreadSpec *BreakpointOptions::GetThreadSpec() { in GetThreadSpec()
513 m_thread_spec_up = std::make_unique<ThreadSpec>(); in GetThreadSpec()
[all …]
DBreakpointLocation.cpp116 const ThreadSpec *thread_spec = in GetThreadID()
138 const ThreadSpec *thread_spec = in GetThreadIndex()
160 const ThreadSpec *thread_spec = in GetThreadName()
182 const ThreadSpec *thread_spec = in GetQueueName()
/external/llvm-project/lldb/include/lldb/Breakpoint/
DWatchpointOptions.h144 const ThreadSpec *GetThreadSpecNoCreate() const;
149 ThreadSpec *GetThreadSpec();
195 std::unique_ptr<ThreadSpec>
DBreakpointOptions.h317 const ThreadSpec *GetThreadSpecNoCreate() const;
322 ThreadSpec *GetThreadSpec();
376 void SetThreadSpec(std::unique_ptr<ThreadSpec> &thread_spec_up);
393 std::unique_ptr<ThreadSpec> m_thread_spec_up;
/external/llvm-project/lldb/include/lldb/Target/
DThreadSpec.h33 class ThreadSpec {
35 ThreadSpec();
37 static std::unique_ptr<ThreadSpec>
DTarget.h1186 void SetThreadSpecifier(ThreadSpec *specifier);
1188 ThreadSpec *GetThreadSpecifier() { return m_thread_spec_up.get(); } in GetThreadSpecifier()
1207 std::unique_ptr<ThreadSpec> m_thread_spec_up;
DThread.h242 virtual bool MatchesSpec(const ThreadSpec *spec);
/external/llvm-project/lldb/source/API/
DSBBreakpoint.cpp399 const ThreadSpec *thread_spec = in GetThreadIndex()
429 const ThreadSpec *thread_spec = in GetThreadName()
458 const ThreadSpec *thread_spec = in GetQueueName()
/external/llvm-project/lldb/include/lldb/
Dlldb-forward.h228 class ThreadSpec; variable
/external/llvm-project/lldb/source/Commands/
DCommandObjectTarget.cpp4764 ThreadSpec *thread_spec = new ThreadSpec(); in DoExecute()