Lines Matching refs:ProcessProperties
145 ProcessProperties::ProcessProperties(lldb_private::Process *process) in ProcessProperties() function in ProcessProperties
174 ProcessProperties::~ProcessProperties() = default;
176 bool ProcessProperties::GetDisableMemoryCache() const { in GetDisableMemoryCache()
182 uint64_t ProcessProperties::GetMemoryCacheLineSize() const { in GetMemoryCacheLineSize()
188 Args ProcessProperties::GetExtraStartupCommands() const { in GetExtraStartupCommands()
195 void ProcessProperties::SetExtraStartupCommands(const Args &args) { in SetExtraStartupCommands()
200 FileSpec ProcessProperties::GetPythonOSPluginPath() const { in GetPythonOSPluginPath()
205 uint32_t ProcessProperties::GetVirtualAddressableBits() const { in GetVirtualAddressableBits()
211 void ProcessProperties::SetVirtualAddressableBits(uint32_t bits) { in SetVirtualAddressableBits()
215 void ProcessProperties::SetPythonOSPluginPath(const FileSpec &file) { in SetPythonOSPluginPath()
220 bool ProcessProperties::GetIgnoreBreakpointsInExpressions() const { in GetIgnoreBreakpointsInExpressions()
226 void ProcessProperties::SetIgnoreBreakpointsInExpressions(bool ignore) { in SetIgnoreBreakpointsInExpressions()
231 bool ProcessProperties::GetUnwindOnErrorInExpressions() const { in GetUnwindOnErrorInExpressions()
237 void ProcessProperties::SetUnwindOnErrorInExpressions(bool ignore) { in SetUnwindOnErrorInExpressions()
242 bool ProcessProperties::GetStopOnSharedLibraryEvents() const { in GetStopOnSharedLibraryEvents()
248 void ProcessProperties::SetStopOnSharedLibraryEvents(bool stop) { in SetStopOnSharedLibraryEvents()
253 bool ProcessProperties::GetDisableLangRuntimeUnwindPlans() const { in GetDisableLangRuntimeUnwindPlans()
259 void ProcessProperties::SetDisableLangRuntimeUnwindPlans(bool disable) { in SetDisableLangRuntimeUnwindPlans()
265 bool ProcessProperties::GetDetachKeepsStopped() const { in GetDetachKeepsStopped()
271 void ProcessProperties::SetDetachKeepsStopped(bool stop) { in SetDetachKeepsStopped()
276 bool ProcessProperties::GetWarningsOptimization() const { in GetWarningsOptimization()
282 bool ProcessProperties::GetWarningsUnsupportedLanguage() const { in GetWarningsUnsupportedLanguage()
288 bool ProcessProperties::GetStopOnExec() const { in GetStopOnExec()
294 std::chrono::seconds ProcessProperties::GetUtilityExpressionTimeout() const { in GetUtilityExpressionTimeout()
301 std::chrono::seconds ProcessProperties::GetInterruptTimeout() const { in GetInterruptTimeout()
308 bool ProcessProperties::GetSteppingRunsAllThreads() const { in GetSteppingRunsAllThreads()
314 bool ProcessProperties::GetOSPluginReportsAllThreads() const { in GetOSPluginReportsAllThreads()
327 void ProcessProperties::SetOSPluginReportsAllThreads(bool does_report) { in SetOSPluginReportsAllThreads()
393 : ProcessProperties(this), in Process()
488 new ProcessPropertiesSP(new ProcessProperties(nullptr)); in GetGlobalProperties()