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