Lines Matching defs:ProcessProperties

161 ProcessProperties::ProcessProperties(lldb_private::Process *process)
163 m_process(process) // Can be nullptr for global ProcessProperties
189 ProcessProperties::~ProcessProperties() = default;
191 bool ProcessProperties::GetDisableMemoryCache() const {
197 uint64_t ProcessProperties::GetMemoryCacheLineSize() const {
203 Args ProcessProperties::GetExtraStartupCommands() const {
210 void ProcessProperties::SetExtraStartupCommands(const Args &args) {
215 FileSpec ProcessProperties::GetPythonOSPluginPath() const {
220 uint32_t ProcessProperties::GetVirtualAddressableBits() const {
226 void ProcessProperties::SetVirtualAddressableBits(uint32_t bits) {
231 uint32_t ProcessProperties::GetHighmemVirtualAddressableBits() const {
237 void ProcessProperties::SetHighmemVirtualAddressableBits(uint32_t bits) {
242 void ProcessProperties::SetPythonOSPluginPath(const FileSpec &file) {
247 bool ProcessProperties::GetIgnoreBreakpointsInExpressions() const {
253 void ProcessProperties::SetIgnoreBreakpointsInExpressions(bool ignore) {
258 bool ProcessProperties::GetUnwindOnErrorInExpressions() const {
264 void ProcessProperties::SetUnwindOnErrorInExpressions(bool ignore) {
269 bool ProcessProperties::GetStopOnSharedLibraryEvents() const {
275 void ProcessProperties::SetStopOnSharedLibraryEvents(bool stop) {
280 bool ProcessProperties::GetDisableLangRuntimeUnwindPlans() const {
286 void ProcessProperties::SetDisableLangRuntimeUnwindPlans(bool disable) {
292 bool ProcessProperties::GetDetachKeepsStopped() const {
298 void ProcessProperties::SetDetachKeepsStopped(bool stop) {
303 bool ProcessProperties::GetWarningsOptimization() const {
309 bool ProcessProperties::GetWarningsUnsupportedLanguage() const {
315 bool ProcessProperties::GetStopOnExec() const {
321 std::chrono::seconds ProcessProperties::GetUtilityExpressionTimeout() const {
328 std::chrono::seconds ProcessProperties::GetInterruptTimeout() const {
335 bool ProcessProperties::GetSteppingRunsAllThreads() const {
341 bool ProcessProperties::GetOSPluginReportsAllThreads() const {
355 void ProcessProperties::SetOSPluginReportsAllThreads(bool does_report) {
365 FollowForkMode ProcessProperties::GetFollowForkMode() const {
426 : ProcessProperties(this),
520 ProcessProperties &Process::GetGlobalProperties() {
523 static ProcessProperties *g_settings_ptr =
524 new ProcessProperties(nullptr);