Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadSpec.cpp21 ThreadSpec::ThreadSpec() in ThreadSpec() function in ThreadSpec
25 ThreadSpec::ThreadSpec(const ThreadSpec &rhs) in ThreadSpec() function in ThreadSpec
29 const ThreadSpec &ThreadSpec::operator=(const ThreadSpec &rhs) { in operator =()
37 std::unique_ptr<ThreadSpec> ThreadSpec::CreateFromStructuredData( in CreateFromStructuredData()
44 std::unique_ptr<ThreadSpec> thread_spec_up(new ThreadSpec()); in CreateFromStructuredData()
83 const char *ThreadSpec::GetName() const { in GetName()
87 const char *ThreadSpec::GetQueueName() const { in GetQueueName()
91 bool ThreadSpec::TIDMatches(Thread &thread) const { in TIDMatches()
99 bool ThreadSpec::IndexMatches(Thread &thread) const { in IndexMatches()
106 bool ThreadSpec::NameMatches(Thread &thread) const { in NameMatches()
[all …]
H A DTarget.cpp3145 m_thread_spec_ap.reset(new ThreadSpec(*rhs.m_thread_spec_ap.get())); in StopHook()
3154 void Target::StopHook::SetThreadSpecifier(ThreadSpec *specifier) { in SetThreadSpecifier()
H A DThread.cpp1033 bool Thread::MatchesSpec(const ThreadSpec *spec) { in MatchesSpec()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadSpec.h34 class ThreadSpec {
36 ThreadSpec();
38 ThreadSpec(const ThreadSpec &rhs);
40 const ThreadSpec &operator=(const ThreadSpec &rhs);
42 static std::unique_ptr<ThreadSpec>
H A DTarget.h1147 void SetThreadSpecifier(ThreadSpec *specifier);
1149 ThreadSpec *GetThreadSpecifier() { return m_thread_spec_ap.get(); } in GetThreadSpecifier()
1161 std::unique_ptr<ThreadSpec> m_thread_spec_ap;
H A DThread.h249 virtual bool MatchesSpec(const ThreadSpec *spec);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DWatchpointOptions.cpp44 m_thread_spec_ap.reset(new ThreadSpec(*rhs.m_thread_spec_ap.get())); in WatchpointOptions()
56 m_thread_spec_ap.reset(new ThreadSpec(*rhs.m_thread_spec_ap.get())); in operator =()
116 const ThreadSpec *WatchpointOptions::GetThreadSpecNoCreate() const { in GetThreadSpecNoCreate()
120 ThreadSpec *WatchpointOptions::GetThreadSpec() { in GetThreadSpec()
122 m_thread_spec_ap.reset(new ThreadSpec()); in GetThreadSpec()
H A DBreakpointOptions.cpp163 m_thread_spec_ap.reset(new ThreadSpec(*rhs.m_thread_spec_ap.get())); in BreakpointOptions()
181 m_thread_spec_ap.reset(new ThreadSpec(*rhs.m_thread_spec_ap.get())); in operator =()
235 m_thread_spec_ap.reset(new ThreadSpec(*incoming.m_thread_spec_ap.get())); in CopyOverSetOptions()
362 ThreadSpec::GetSerializationKey(), thread_spec_dict); in CreateFromStructuredData()
365 std::unique_ptr<ThreadSpec> thread_spec_up = in CreateFromStructuredData()
366 ThreadSpec::CreateFromStructuredData(*thread_spec_dict, in CreateFromStructuredData()
411 options_dict_sp->AddItem(ThreadSpec::GetSerializationKey(), thread_spec_sp); in SerializeToStructuredData()
524 const ThreadSpec *BreakpointOptions::GetThreadSpecNoCreate() const { in GetThreadSpecNoCreate()
528 ThreadSpec *BreakpointOptions::GetThreadSpec() { in GetThreadSpec()
532 m_thread_spec_ap.reset(new ThreadSpec()); in GetThreadSpec()
[all …]
H A DBreakpointLocation.cpp118 const ThreadSpec *thread_spec = in GetThreadID()
140 const ThreadSpec *thread_spec = in GetThreadIndex()
162 const ThreadSpec *thread_spec = in GetThreadName()
184 const ThreadSpec *thread_spec = in GetQueueName()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h171 const ThreadSpec *GetThreadSpecNoCreate() const;
178 ThreadSpec *GetThreadSpec();
233 std::unique_ptr<ThreadSpec>
H A DBreakpointOptions.h366 const ThreadSpec *GetThreadSpecNoCreate() const;
373 ThreadSpec *GetThreadSpec();
432 void SetThreadSpec(std::unique_ptr<ThreadSpec> &thread_spec_up);
445 std::unique_ptr<ThreadSpec>
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBBreakpoint.cpp343 const ThreadSpec *thread_spec = in GetThreadIndex()
372 const ThreadSpec *thread_spec = in GetThreadName()
401 const ThreadSpec *thread_spec = in GetQueueName()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h264 class ThreadSpec; variable
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile573 SRCS+= Target/ThreadSpec.cpp
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectTarget.cpp4781 ThreadSpec *thread_spec = new ThreadSpec(); in DoExecute()