Home
last modified time | relevance | path

Searched refs:ThreadProperties (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DThread.h34 class ThreadProperties : public Properties {
36 ThreadProperties(bool is_global);
38 ~ThreadProperties() override;
60 typedef std::shared_ptr<ThreadProperties> ThreadPropertiesSP;
63 public ThreadProperties,
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DThread.cpp62 new ThreadPropertiesSP(new ThreadProperties(true)); in GetGlobalProperties()
99 ThreadProperties::ThreadProperties(bool is_global) : Properties() { in ThreadProperties() function in ThreadProperties
109 ThreadProperties::~ThreadProperties() = default;
111 const RegularExpression *ThreadProperties::GetSymbolsToAvoidRegexp() { in GetSymbolsToAvoidRegexp()
116 FileSpecList ThreadProperties::GetLibrariesToAvoid() const { in GetLibrariesToAvoid()
125 bool ThreadProperties::GetTraceEnabledState() const { in GetTraceEnabledState()
131 bool ThreadProperties::GetStepInAvoidsNoDebug() const { in GetStepInAvoidsNoDebug()
137 bool ThreadProperties::GetStepOutAvoidsNoDebug() const { in GetStepOutAvoidsNoDebug()
143 uint64_t ThreadProperties::GetMaxBacktraceDepth() const { in GetMaxBacktraceDepth()
218 : ThreadProperties(false), UserID(tid), in Thread()