Lines Matching refs:ProcessProperties
92 ProcessOptionValueProperties(ProcessProperties *global_properties) in ProcessOptionValueProperties()
161 ProcessProperties::ProcessProperties(lldb_private::Process *process) in ProcessProperties() function in ProcessProperties
178 ProcessProperties::OptionValueChangedCallback, this); in ProcessProperties()
182 ProcessProperties::~ProcessProperties() = default;
184 void ProcessProperties::OptionValueChangedCallback(void *baton, in OptionValueChangedCallback()
186 ProcessProperties *properties = (ProcessProperties *)baton; in OptionValueChangedCallback()
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 void ProcessProperties::SetPythonOSPluginPath(const FileSpec &file) { in SetPythonOSPluginPath()
225 bool ProcessProperties::GetIgnoreBreakpointsInExpressions() const { in GetIgnoreBreakpointsInExpressions()
231 void ProcessProperties::SetIgnoreBreakpointsInExpressions(bool ignore) { in SetIgnoreBreakpointsInExpressions()
236 bool ProcessProperties::GetUnwindOnErrorInExpressions() const { in GetUnwindOnErrorInExpressions()
242 void ProcessProperties::SetUnwindOnErrorInExpressions(bool ignore) { in SetUnwindOnErrorInExpressions()
247 bool ProcessProperties::GetStopOnSharedLibraryEvents() const { in GetStopOnSharedLibraryEvents()
253 void ProcessProperties::SetStopOnSharedLibraryEvents(bool stop) { in SetStopOnSharedLibraryEvents()
258 bool ProcessProperties::GetDetachKeepsStopped() const { in GetDetachKeepsStopped()
264 void ProcessProperties::SetDetachKeepsStopped(bool stop) { in SetDetachKeepsStopped()
269 bool ProcessProperties::GetWarningsOptimization() const { in GetWarningsOptimization()
275 bool ProcessProperties::GetStopOnExec() const { in GetStopOnExec()
720 : ProcessProperties(this), UserID(LLDB_INVALID_PROCESS_ID), in Process()
815 new ProcessPropertiesSP(new ProcessProperties(nullptr)); in GetGlobalProperties()