Lines Matching refs:ProcessProperties
158 ProcessProperties::ProcessProperties(lldb_private::Process *process) in ProcessProperties() function in ProcessProperties
186 ProcessProperties::~ProcessProperties() = default;
188 bool ProcessProperties::GetDisableMemoryCache() const { in GetDisableMemoryCache()
194 uint64_t ProcessProperties::GetMemoryCacheLineSize() const { in GetMemoryCacheLineSize()
200 Args ProcessProperties::GetExtraStartupCommands() const { in GetExtraStartupCommands()
207 void ProcessProperties::SetExtraStartupCommands(const Args &args) { in SetExtraStartupCommands()
212 FileSpec ProcessProperties::GetPythonOSPluginPath() const { in GetPythonOSPluginPath()
217 uint32_t ProcessProperties::GetVirtualAddressableBits() const { in GetVirtualAddressableBits()
223 void ProcessProperties::SetVirtualAddressableBits(uint32_t bits) { in SetVirtualAddressableBits()
228 uint32_t ProcessProperties::GetHighmemVirtualAddressableBits() const { in GetHighmemVirtualAddressableBits()
234 void ProcessProperties::SetHighmemVirtualAddressableBits(uint32_t bits) { in SetHighmemVirtualAddressableBits()
239 void ProcessProperties::SetPythonOSPluginPath(const FileSpec &file) { in SetPythonOSPluginPath()
244 bool ProcessProperties::GetIgnoreBreakpointsInExpressions() const { in GetIgnoreBreakpointsInExpressions()
250 void ProcessProperties::SetIgnoreBreakpointsInExpressions(bool ignore) { in SetIgnoreBreakpointsInExpressions()
255 bool ProcessProperties::GetUnwindOnErrorInExpressions() const { in GetUnwindOnErrorInExpressions()
261 void ProcessProperties::SetUnwindOnErrorInExpressions(bool ignore) { in SetUnwindOnErrorInExpressions()
266 bool ProcessProperties::GetStopOnSharedLibraryEvents() const { in GetStopOnSharedLibraryEvents()
272 void ProcessProperties::SetStopOnSharedLibraryEvents(bool stop) { in SetStopOnSharedLibraryEvents()
277 bool ProcessProperties::GetDisableLangRuntimeUnwindPlans() const { in GetDisableLangRuntimeUnwindPlans()
283 void ProcessProperties::SetDisableLangRuntimeUnwindPlans(bool disable) { in SetDisableLangRuntimeUnwindPlans()
289 bool ProcessProperties::GetDetachKeepsStopped() const { in GetDetachKeepsStopped()
295 void ProcessProperties::SetDetachKeepsStopped(bool stop) { in SetDetachKeepsStopped()
300 bool ProcessProperties::GetWarningsOptimization() const { in GetWarningsOptimization()
306 bool ProcessProperties::GetWarningsUnsupportedLanguage() const { in GetWarningsUnsupportedLanguage()
312 bool ProcessProperties::GetStopOnExec() const { in GetStopOnExec()
318 std::chrono::seconds ProcessProperties::GetUtilityExpressionTimeout() const { in GetUtilityExpressionTimeout()
325 std::chrono::seconds ProcessProperties::GetInterruptTimeout() const { in GetInterruptTimeout()
332 bool ProcessProperties::GetSteppingRunsAllThreads() const { in GetSteppingRunsAllThreads()
338 bool ProcessProperties::GetOSPluginReportsAllThreads() const { in GetOSPluginReportsAllThreads()
352 void ProcessProperties::SetOSPluginReportsAllThreads(bool does_report) { in SetOSPluginReportsAllThreads()
362 FollowForkMode ProcessProperties::GetFollowForkMode() const { in GetFollowForkMode()
423 : ProcessProperties(this), in Process()
513 ProcessProperties &Process::GetGlobalProperties() { in GetGlobalProperties()
516 static ProcessProperties *g_settings_ptr = in GetGlobalProperties()
517 new ProcessProperties(nullptr); in GetGlobalProperties()