Lines Matching refs:ProcessProperties

159 ProcessProperties::ProcessProperties(lldb_private::Process *process)  in ProcessProperties()  function in ProcessProperties
188 ProcessProperties::~ProcessProperties() = default;
190 bool ProcessProperties::GetDisableMemoryCache() const { in GetDisableMemoryCache()
196 uint64_t ProcessProperties::GetMemoryCacheLineSize() const { in GetMemoryCacheLineSize()
202 Args ProcessProperties::GetExtraStartupCommands() const { in GetExtraStartupCommands()
209 void ProcessProperties::SetExtraStartupCommands(const Args &args) { in SetExtraStartupCommands()
214 FileSpec ProcessProperties::GetPythonOSPluginPath() const { in GetPythonOSPluginPath()
219 uint32_t ProcessProperties::GetVirtualAddressableBits() const { in GetVirtualAddressableBits()
225 void ProcessProperties::SetVirtualAddressableBits(uint32_t bits) { in SetVirtualAddressableBits()
229 void ProcessProperties::SetPythonOSPluginPath(const FileSpec &file) { in SetPythonOSPluginPath()
234 bool ProcessProperties::GetIgnoreBreakpointsInExpressions() const { in GetIgnoreBreakpointsInExpressions()
240 void ProcessProperties::SetIgnoreBreakpointsInExpressions(bool ignore) { in SetIgnoreBreakpointsInExpressions()
245 bool ProcessProperties::GetUnwindOnErrorInExpressions() const { in GetUnwindOnErrorInExpressions()
251 void ProcessProperties::SetUnwindOnErrorInExpressions(bool ignore) { in SetUnwindOnErrorInExpressions()
256 bool ProcessProperties::GetStopOnSharedLibraryEvents() const { in GetStopOnSharedLibraryEvents()
262 void ProcessProperties::SetStopOnSharedLibraryEvents(bool stop) { in SetStopOnSharedLibraryEvents()
267 bool ProcessProperties::GetDisableLangRuntimeUnwindPlans() const { in GetDisableLangRuntimeUnwindPlans()
273 void ProcessProperties::SetDisableLangRuntimeUnwindPlans(bool disable) { in SetDisableLangRuntimeUnwindPlans()
279 bool ProcessProperties::GetDetachKeepsStopped() const { in GetDetachKeepsStopped()
285 void ProcessProperties::SetDetachKeepsStopped(bool stop) { in SetDetachKeepsStopped()
290 bool ProcessProperties::GetWarningsOptimization() const { in GetWarningsOptimization()
296 bool ProcessProperties::GetWarningsUnsupportedLanguage() const { in GetWarningsUnsupportedLanguage()
302 bool ProcessProperties::GetStopOnExec() const { in GetStopOnExec()
308 std::chrono::seconds ProcessProperties::GetUtilityExpressionTimeout() const { in GetUtilityExpressionTimeout()
315 std::chrono::seconds ProcessProperties::GetInterruptTimeout() const { in GetInterruptTimeout()
322 bool ProcessProperties::GetSteppingRunsAllThreads() const { in GetSteppingRunsAllThreads()
328 bool ProcessProperties::GetOSPluginReportsAllThreads() const { in GetOSPluginReportsAllThreads()
341 void ProcessProperties::SetOSPluginReportsAllThreads(bool does_report) { in SetOSPluginReportsAllThreads()
351 FollowForkMode ProcessProperties::GetFollowForkMode() const { in GetFollowForkMode()
412 : ProcessProperties(this), in Process()
504 ProcessProperties &Process::GetGlobalProperties() { in GetGlobalProperties()
507 static ProcessProperties *g_settings_ptr = in GetGlobalProperties()
508 new ProcessProperties(nullptr); in GetGlobalProperties()