HomeSort by relevance Sort by last modified time
    Searched refs:eTypeBoolean (Results 1 - 13 of 13) sorted by null

  /external/lldb/include/lldb/Interpreter/
OptionValueBoolean.h 50 return eTypeBoolean;
OptionValue.h 34 eTypeBoolean,
175 case 1u << eTypeBoolean: return eTypeBoolean;
  /external/lldb/source/Interpreter/
OptionValue.cpp 35 case OptionValue::eTypeBoolean: return static_cast<OptionValueBoolean *>(this)->GetCurrentValue();
61 if (GetType () == OptionValue::eTypeBoolean)
69 if (GetType () == OptionValue::eTypeBoolean)
522 case eTypeBoolean: return "boolean";
549 case 1u << eTypeBoolean: value_sp.reset(new OptionValueBoolean(false)); break;
OptionValueArray.cpp 55 case eTypeBoolean:
Property.cpp 53 case OptionValue::eTypeBoolean:
OptionValueDictionary.cpp 66 case eTypeBoolean:
CommandInterpreter.cpp 76 { "expand-regex-aliases", OptionValue::eTypeBoolean, true, false, NULL, NULL, "If true, regular expression alias commands will show the expanded command that will be executed. This can be used to debug new regular expression alias commands." },
77 { "prompt-on-quit", OptionValue::eTypeBoolean, true, true, NULL, NULL, "If true, LLDB will prompt you before quitting if there are any live processes being debugged. If false, LLDB will quit without asking in any case." },
78 { "stop-command-source-on-error", OptionValue::eTypeBoolean, true, true, NULL, NULL, "If true, LLDB will stop running a 'command source' script upon encountering an error." },
    [all...]
  /external/lldb/source/Target/
Target.cpp     [all...]
Process.cpp 97 { "disable-memory-cache" , OptionValue::eTypeBoolean, false, DISABLE_MEM_CACHE_DEFAULT, NULL, NULL, "Disable reading and caching of memory in fixed-size units." },
100 { "ignore-breakpoints-in-expressions", OptionValue::eTypeBoolean, true, true, NULL, NULL, "If true, breakpoints will be ignored during expression evaluation." },
101 { "unwind-on-error-in-expressions", OptionValue::eTypeBoolean, true, true, NULL, NULL, "If true, errors in expression evaluation will unwind the stack back to the state before the call." },
103 { "stop-on-sharedlibrary-events" , OptionValue::eTypeBoolean, true, false, NULL, NULL, "If true, stop when a shared library is loaded or unloaded." },
104 { "detach-keeps-stopped" , OptionValue::eTypeBoolean, true, false, NULL, NULL, "If true, detach will attempt to keep the process stopped." },
    [all...]
Thread.cpp 64 { "trace-thread", OptionValue::eTypeBoolean, false, false, NULL, NULL, "If true, this thread will single-step and log execution." },
    [all...]
  /external/lldb/source/Core/
Debugger.cpp 122 { "auto-confirm", OptionValue::eTypeBoolean, true, false, NULL, NULL, "If true all confirmation prompts will receive their default reply." },
124 { "notify-void", OptionValue::eTypeBoolean, true, false, NULL, NULL, "Notify the user explicitly if an expression returns void (default: false)." },
133 { "use-external-editor", OptionValue::eTypeBoolean, true, false, NULL, NULL, "Whether to use an external editor or not." },
134 { "use-color", OptionValue::eTypeBoolean, true, true , NULL, NULL, "Whether to use Ansi color codes or not." },
    [all...]
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformDarwinKernel.cpp 170 { "search-locally-for-kexts" , OptionValue::eTypeBoolean, true, true, NULL, NULL, "Automatically search for kexts on the local system when doing kernel debugging." },
  /external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DynamicLoaderDarwinKernel.cpp 69 { "load-kexts" , OptionValue::eTypeBoolean, true, true, NULL, NULL, "Automatically loads kext images when attaching to a kernel." },
    [all...]

Completed in 210 milliseconds