Lines Matching refs:ProcessProperties

160 ProcessProperties::ProcessProperties(lldb_private::Process *process)  in ProcessProperties()  function in ProcessProperties
189 ProcessProperties::~ProcessProperties() = default;
191 bool ProcessProperties::GetDisableMemoryCache() const { in GetDisableMemoryCache()
197 uint64_t ProcessProperties::GetMemoryCacheLineSize() const { in GetMemoryCacheLineSize()
203 Args ProcessProperties::GetExtraStartupCommands() const { in GetExtraStartupCommands()
210 void ProcessProperties::SetExtraStartupCommands(const Args &args) { in SetExtraStartupCommands()
215 FileSpec ProcessProperties::GetPythonOSPluginPath() const { in GetPythonOSPluginPath()
220 uint32_t ProcessProperties::GetVirtualAddressableBits() const { in GetVirtualAddressableBits()
226 void ProcessProperties::SetVirtualAddressableBits(uint32_t bits) { in SetVirtualAddressableBits()
230 void ProcessProperties::SetPythonOSPluginPath(const FileSpec &file) { in SetPythonOSPluginPath()
235 bool ProcessProperties::GetIgnoreBreakpointsInExpressions() const { in GetIgnoreBreakpointsInExpressions()
241 void ProcessProperties::SetIgnoreBreakpointsInExpressions(bool ignore) { in SetIgnoreBreakpointsInExpressions()
246 bool ProcessProperties::GetUnwindOnErrorInExpressions() const { in GetUnwindOnErrorInExpressions()
252 void ProcessProperties::SetUnwindOnErrorInExpressions(bool ignore) { in SetUnwindOnErrorInExpressions()
257 bool ProcessProperties::GetStopOnSharedLibraryEvents() const { in GetStopOnSharedLibraryEvents()
263 void ProcessProperties::SetStopOnSharedLibraryEvents(bool stop) { in SetStopOnSharedLibraryEvents()
268 bool ProcessProperties::GetDisableLangRuntimeUnwindPlans() const { in GetDisableLangRuntimeUnwindPlans()
274 void ProcessProperties::SetDisableLangRuntimeUnwindPlans(bool disable) { in SetDisableLangRuntimeUnwindPlans()
280 bool ProcessProperties::GetDetachKeepsStopped() const { in GetDetachKeepsStopped()
286 void ProcessProperties::SetDetachKeepsStopped(bool stop) { in SetDetachKeepsStopped()
291 bool ProcessProperties::GetWarningsOptimization() const { in GetWarningsOptimization()
297 bool ProcessProperties::GetWarningsUnsupportedLanguage() const { in GetWarningsUnsupportedLanguage()
303 bool ProcessProperties::GetStopOnExec() const { in GetStopOnExec()
309 std::chrono::seconds ProcessProperties::GetUtilityExpressionTimeout() const { in GetUtilityExpressionTimeout()
316 std::chrono::seconds ProcessProperties::GetInterruptTimeout() const { in GetInterruptTimeout()
323 bool ProcessProperties::GetSteppingRunsAllThreads() const { in GetSteppingRunsAllThreads()
329 bool ProcessProperties::GetOSPluginReportsAllThreads() const { in GetOSPluginReportsAllThreads()
342 void ProcessProperties::SetOSPluginReportsAllThreads(bool does_report) { in SetOSPluginReportsAllThreads()
352 FollowForkMode ProcessProperties::GetFollowForkMode() const { in GetFollowForkMode()
413 : ProcessProperties(this), in Process()
505 ProcessProperties &Process::GetGlobalProperties() { in GetGlobalProperties()
508 static ProcessProperties *g_settings_ptr = in GetGlobalProperties()
509 new ProcessProperties(nullptr); in GetGlobalProperties()