Lines Matching refs:ThreadProperties
60 ThreadProperties &Thread::GetGlobalProperties() { in GetGlobalProperties()
63 static ThreadProperties *g_settings_ptr = new ThreadProperties(true); in GetGlobalProperties()
100 ThreadProperties::ThreadProperties(bool is_global) : Properties() { in ThreadProperties() function in ThreadProperties
110 ThreadProperties::~ThreadProperties() = default;
112 const RegularExpression *ThreadProperties::GetSymbolsToAvoidRegexp() { in GetSymbolsToAvoidRegexp()
117 FileSpecList ThreadProperties::GetLibrariesToAvoid() const { in GetLibrariesToAvoid()
126 bool ThreadProperties::GetTraceEnabledState() const { in GetTraceEnabledState()
132 bool ThreadProperties::GetStepInAvoidsNoDebug() const { in GetStepInAvoidsNoDebug()
138 bool ThreadProperties::GetStepOutAvoidsNoDebug() const { in GetStepOutAvoidsNoDebug()
144 uint64_t ThreadProperties::GetMaxBacktraceDepth() const { in GetMaxBacktraceDepth()
219 : ThreadProperties(false), UserID(tid), in Thread()