HomeSort by relevance Sort by last modified time
    Searched refs:eArgTypeNone (Results 1 - 25 of 31) sorted by null

1 2

  /external/lldb/source/Interpreter/
OptionGroupVariable.cpp 31 { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "no-args", 'a', no_argument, NULL, 0, eArgTypeNone, "Omit function arguments."},
32 { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "no-locals", 'l', no_argument, NULL, 0, eArgTypeNone, "Omit local variables."},
33 { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "show-globals", 'g', no_argument, NULL, 0, eArgTypeNone, "Show the current frame source file global and static variables."},
34 { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "show-declaration",'c', no_argument, NULL, 0, eArgTypeNone, "Show variable declaration information (source file and line where the variable was declared)."},
36 { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "scope", 's', no_argument, NULL, 0, eArgTypeNone, "Show variable scope (argument, local, global, static)."},
OptionGroupValueObjectDisplay.cpp 36 { LLDB_OPT_SET_1, false, "dynamic-type", 'd', required_argument, g_dynamic_value_types, 0, eArgTypeNone, "Show the object as its full dynamic type, not its static type, if available."},
39 { LLDB_OPT_SET_1, false, "flat", 'F', no_argument, NULL, 0, eArgTypeNone, "Display results in a flat format that uses expression paths for each variable or member."},
40 { LLDB_OPT_SET_1, false, "location", 'L', no_argument, NULL, 0, eArgTypeNone, "Show variable location information."},
41 { LLDB_OPT_SET_1, false, "object-description", 'O', no_argument, NULL, 0, eArgTypeNone, "Print as an Objective-C object."},
43 { LLDB_OPT_SET_1, false, "show-types", 'T', no_argument, NULL, 0, eArgTypeNone, "Show variable types when dumping values."},
45 { LLDB_OPT_SET_1, false, "raw-output", 'R', no_argument, NULL, 0, eArgTypeNone, "Don't use formatting options."},
46 { LLDB_OPT_SET_1, false, "show-all-children", 'A', no_argument, NULL, 0, eArgTypeNone, "Ignore the upper bound on the number of children to show."},
47 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
OptionGroupUUID.cpp 33 { LLDB_OPT_SET_1 , false, "uuid", 'u', required_argument, NULL, 0, eArgTypeNone, "A module UUID value."},
OptionGroupOutputFile.cpp 35 { LLDB_OPT_SET_1 , false, "append-outfile" , 'apnd', no_argument, NULL, 0, eArgTypeNone , "Append to the the file specified with '--outfile <path>'."},
OptionGroupPlatform.cpp 89 { LLDB_OPT_SET_ALL, false, "version" , 'v', required_argument, NULL, 0, eArgTypeNone, "Specify the initial SDK version to use prior to connecting." },
90 { LLDB_OPT_SET_ALL, false, "build" , 'b', required_argument, NULL, 0, eArgTypeNone, "Specify the initial SDK build number." },
  /external/lldb/source/Commands/
CommandObjectLog.cpp 219 { LLDB_OPT_SET_1, false, "threadsafe", 't', no_argument, NULL, 0, eArgTypeNone, "Enable thread safe logging to avoid interweaved log lines." },
220 { LLDB_OPT_SET_1, false, "verbose", 'v', no_argument, NULL, 0, eArgTypeNone, "Enable verbose logging." },
221 { LLDB_OPT_SET_1, false, "debug", 'g', no_argument, NULL, 0, eArgTypeNone, "Enable debug logging." },
222 { LLDB_OPT_SET_1, false, "sequence", 's', no_argument, NULL, 0, eArgTypeNone, "Prepend all log lines with an increasing integer sequence id." },
223 { LLDB_OPT_SET_1, false, "timestamp", 'T', no_argument, NULL, 0, eArgTypeNone, "Prepend all log lines with a timestamp." },
224 { LLDB_OPT_SET_1, false, "pid-tid", 'p', no_argument, NULL, 0, eArgTypeNone, "Prepend all log lines with the process and thread ID that generates the log line." },
225 { LLDB_OPT_SET_1, false, "thread-name",'n', no_argument, NULL, 0, eArgTypeNone, "Prepend all log lines with the thread name for the thread that generates the log line." },
226 { LLDB_OPT_SET_1, false, "stack", 'S', no_argument, NULL, 0, eArgTypeNone, "Append a stack backtrace to each log line." },
227 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
CommandObjectHelp.cpp 57 { LLDB_OPT_SET_ALL, false, "show-aliases", 'a', no_argument, NULL, 0, eArgTypeNone, "Show aliases in the command list."},
58 { LLDB_OPT_SET_ALL, false, "hide-user-commands", 'u', no_argument, NULL, 0, eArgTypeNone, "Hide user-defined commands from the list."},
59 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
CommandObjectDisassemble.cpp 234 { LLDB_OPT_SET_ALL, false, "bytes" , 'b', no_argument , NULL, 0, eArgTypeNone, "Show opcode bytes when disassembling."},
236 { LLDB_OPT_SET_ALL, false, "mixed" , 'm', no_argument , NULL, 0, eArgTypeNone, "Enable mixed source and assembly display."},
237 { LLDB_OPT_SET_ALL, false, "raw" , 'r', no_argument , NULL, 0, eArgTypeNone, "Print raw disassembly with no symbol information."},
252 { LLDB_OPT_SET_4 , false, "frame" , 'f', no_argument , NULL, 0, eArgTypeNone, "Disassemble from the start of the current frame's function."},
253 { LLDB_OPT_SET_5 , false, "pc" , 'p', no_argument , NULL, 0, eArgTypeNone, "Disassemble around the current pc."},
254 { LLDB_OPT_SET_6 , false, "line" , 'l', no_argument , NULL, 0, eArgTypeNone, "Disassemble the current frame's current source line instructions if there debug line table information, else disasemble around the pc."},
256 { 0 , false, NULL , 0, 0 , NULL, 0, eArgTypeNone, NULL }
CommandObjectType.cpp 536 { LLDB_OPT_SET_ALL, false, "skip-pointers", 'p', no_argument, NULL, 0, eArgTypeNone, "Don't use this format for pointers-to-type objects."},
537 { LLDB_OPT_SET_ALL, false, "skip-references", 'r', no_argument, NULL, 0, eArgTypeNone, "Don't use this format for references-to-type objects."},
    [all...]
CommandObjectArgs.cpp 269 { LLDB_OPT_SET_1, false, "debug", 'g', no_argument, NULL, 0, eArgTypeNone, "Enable verbose debug logging of the expression parsing and evaluation."},
270 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
CommandObjectBreakpoint.cpp 613 { LLDB_OPT_SET_ALL, false, "one-shot", 'o', no_argument, NULL, 0, eArgTypeNone,
686 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
    [all...]
CommandObjectSource.cpp 142 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
    [all...]
CommandObjectCommands.cpp 234 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
416 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
    [all...]
CommandObjectProcess.cpp 362 //{ SET1 | SET2 | SET3, false, "stop-at-entry", 's', no_argument, NULL, 0, eArgTypeNone, "Stop at the entry point of the program when launching a process."},
368 //{ SET3, false, "no-stdio", 'n', no_argument, NULL, 0, eArgTypeNone, "Do not set up for terminal I/O to go to running process."},
370 //{ 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
704 { LLDB_OPT_SET_ALL, false, "continue",'c', no_argument, NULL, 0, eArgTypeNone, "Immediately continue the process once attached."},
708 { LLDB_OPT_SET_2, false, "include-existing", 'i', no_argument, NULL, 0, eArgTypeNone, "Include existing processes when doing attach -w."},
709 { LLDB_OPT_SET_2, false, "waitfor", 'w', no_argument, NULL, 0, eArgTypeNone, "Wait for the process with <process-name> to launch."},
710 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
    [all...]
CommandObjectRegister.cpp 354 { LLDB_OPT_SET_ALL, false, "alternate", 'A', no_argument , NULL, 0, eArgTypeNone , "Display register names using the alternate register name if there is one."},
356 { LLDB_OPT_SET_2 , false, "all" , 'a', no_argument , NULL, 0, eArgTypeNone , "Show all register sets."},
CommandObjectWatchpoint.cpp 338 { LLDB_OPT_SET_1, false, "brief", 'b', no_argument, NULL, 0, eArgTypeNone,
341 { LLDB_OPT_SET_2, false, "full", 'f', no_argument, NULL, 0, eArgTypeNone,
344 { LLDB_OPT_SET_3, false, "verbose", 'v', no_argument, NULL, 0, eArgTypeNone,
347 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
744 { 0, false, NULL, 0 , 0, NULL, 0, eArgTypeNone, NULL }
907 { 0, false, NULL, 0 , 0, NULL, 0, eArgTypeNone, NULL }
    [all...]
CommandObjectThread.cpp 263 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
598 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
    [all...]
CommandObjectPlatform.cpp 759 { LLDB_OPT_SET_FROM_TO(1, 6), false, "show-args" , 'A', no_argument , NULL, 0, eArgTypeNone , "Show process arguments instead of the process executable basename." },
760 { LLDB_OPT_SET_FROM_TO(1, 6), false, "verbose" , 'v', no_argument , NULL, 0, eArgTypeNone , "Enable verbose output." },
761 { 0 , false, NULL , 0 , 0 , NULL, 0, eArgTypeNone , NULL }
    [all...]
CommandObjectWatchpointCommand.cpp 610 { LLDB_OPT_SET_ALL, false, "script-type", 's', required_argument, g_script_option_enumeration, 0, eArgTypeNone,
616 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
    [all...]
CommandObjectTarget.cpp     [all...]
CommandObjectBreakpointCommand.cpp 649 { LLDB_OPT_SET_ALL, false, "script-type", 's', required_argument, g_script_option_enumeration, 0, eArgTypeNone,
655 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
    [all...]
  /external/lldb/tools/driver/
Driver.cpp 79 { LLDB_OPT_SET_1, true , "help" , 'h', no_argument , 0, eArgTypeNone,
81 { LLDB_OPT_SET_2, true , "version" , 'v', no_argument , 0, eArgTypeNone,
92 { LLDB_OPT_SET_4, true , "wait-for" , 'w', no_argument , 0, eArgTypeNone,
100 { LLDB_3_TO_5, false, "debug" , 'd', no_argument , 0, eArgTypeNone,
104 { LLDB_3_TO_5, false, "editor" , 'e', no_argument , 0, eArgTypeNone,
106 { LLDB_3_TO_5, false, "no-lldbinit" , 'x', no_argument , 0, eArgTypeNone,
108 { LLDB_3_TO_5, false, "no-use-colors" , 'o', no_argument , 0, eArgTypeNone,
110 { LLDB_OPT_SET_6, true , "python-path" , 'P', no_argument , 0, eArgTypeNone,
112 { 0, false, NULL , 0 , 0 , 0, eArgTypeNone, NULL }
328 if (arg_type != eArgTypeNone)
    [all...]
  /external/lldb/include/lldb/Interpreter/
CommandObject.h 67 arg_type(lldb::eArgTypeNone),
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ProcessKDP.cpp 974 m_command_byte(LLDB_OPT_SET_1, true , "command", 'c', 0, eArgTypeNone, "Specify the command byte to use when sending the KDP request packet.", 0),
975 m_packet_data (LLDB_OPT_SET_1, false, "payload", 'p', 0, eArgTypeNone, "Specify packet payload bytes as a hex ASCII string with no spaces or hex prefixes.", NULL)
    [all...]
  /external/lldb/include/lldb/
lldb-enumerations.h 442 eArgTypeNone,

Completed in 920 milliseconds

1 2