Lines Matching refs:ProcessProperties
188 ProcessProperties::ProcessProperties(lldb_private::Process *process) in ProcessProperties() function in ProcessProperties
216 ProcessProperties::~ProcessProperties() = default;
218 bool ProcessProperties::GetDisableMemoryCache() const { in GetDisableMemoryCache()
224 uint64_t ProcessProperties::GetMemoryCacheLineSize() const { in GetMemoryCacheLineSize()
230 Args ProcessProperties::GetExtraStartupCommands() const { in GetExtraStartupCommands()
237 void ProcessProperties::SetExtraStartupCommands(const Args &args) { in SetExtraStartupCommands()
242 FileSpec ProcessProperties::GetPythonOSPluginPath() const { in GetPythonOSPluginPath()
247 uint32_t ProcessProperties::GetVirtualAddressableBits() const { in GetVirtualAddressableBits()
253 void ProcessProperties::SetVirtualAddressableBits(uint32_t bits) { in SetVirtualAddressableBits()
258 uint32_t ProcessProperties::GetHighmemVirtualAddressableBits() const { in GetHighmemVirtualAddressableBits()
264 void ProcessProperties::SetHighmemVirtualAddressableBits(uint32_t bits) { in SetHighmemVirtualAddressableBits()
269 void ProcessProperties::SetPythonOSPluginPath(const FileSpec &file) { in SetPythonOSPluginPath()
274 bool ProcessProperties::GetIgnoreBreakpointsInExpressions() const { in GetIgnoreBreakpointsInExpressions()
280 void ProcessProperties::SetIgnoreBreakpointsInExpressions(bool ignore) { in SetIgnoreBreakpointsInExpressions()
285 bool ProcessProperties::GetUnwindOnErrorInExpressions() const { in GetUnwindOnErrorInExpressions()
291 void ProcessProperties::SetUnwindOnErrorInExpressions(bool ignore) { in SetUnwindOnErrorInExpressions()
296 bool ProcessProperties::GetStopOnSharedLibraryEvents() const { in GetStopOnSharedLibraryEvents()
302 void ProcessProperties::SetStopOnSharedLibraryEvents(bool stop) { in SetStopOnSharedLibraryEvents()
307 bool ProcessProperties::GetDisableLangRuntimeUnwindPlans() const { in GetDisableLangRuntimeUnwindPlans()
313 void ProcessProperties::SetDisableLangRuntimeUnwindPlans(bool disable) { in SetDisableLangRuntimeUnwindPlans()
319 bool ProcessProperties::GetDetachKeepsStopped() const { in GetDetachKeepsStopped()
325 void ProcessProperties::SetDetachKeepsStopped(bool stop) { in SetDetachKeepsStopped()
330 bool ProcessProperties::GetWarningsOptimization() const { in GetWarningsOptimization()
336 bool ProcessProperties::GetWarningsUnsupportedLanguage() const { in GetWarningsUnsupportedLanguage()
342 bool ProcessProperties::GetStopOnExec() const { in GetStopOnExec()
348 std::chrono::seconds ProcessProperties::GetUtilityExpressionTimeout() const { in GetUtilityExpressionTimeout()
355 std::chrono::seconds ProcessProperties::GetInterruptTimeout() const { in GetInterruptTimeout()
362 bool ProcessProperties::GetSteppingRunsAllThreads() const { in GetSteppingRunsAllThreads()
368 bool ProcessProperties::GetOSPluginReportsAllThreads() const { in GetOSPluginReportsAllThreads()
382 void ProcessProperties::SetOSPluginReportsAllThreads(bool does_report) { in SetOSPluginReportsAllThreads()
392 FollowForkMode ProcessProperties::GetFollowForkMode() const { in GetFollowForkMode()
453 : ProcessProperties(this), in Process()
545 ProcessProperties &Process::GetGlobalProperties() { in GetGlobalProperties()
548 static ProcessProperties *g_settings_ptr = in GetGlobalProperties()
549 new ProcessProperties(nullptr); in GetGlobalProperties()