Searched defs:short_option (Results 1 - 25 of 40) sorted by relevance

12

/external/lldb/source/Interpreter/
H A DOptionGroupArchitecture.cpp65 const int short_option = g_option_table[option_idx].short_option; local
67 switch (short_option)
74 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
H A DOptionGroupBoolean.cpp23 int short_option,
32 m_option_definition.short_option = short_option;
20 OptionGroupBoolean(uint32_t usage_mask, bool required, const char *long_option, int short_option, const char *usage_text, bool default_value, bool no_argument_toggle_default) argument
H A DOptionGroupOutputFile.cpp56 const int short_option = g_option_table[option_idx].short_option; local
58 switch (short_option)
69 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
H A DOptionGroupPlatform.cpp120 const int short_option = g_option_table[option_idx].short_option; local
122 switch (short_option)
145 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
H A DOptionGroupString.cpp23 int short_option,
33 m_option_definition.short_option = short_option;
20 OptionGroupString(uint32_t usage_mask, bool required, const char *long_option, int short_option, uint32_t completion_type, lldb::CommandArgumentType argument_type, const char *usage_text, const char *default_value) argument
H A DOptionGroupUInt64.cpp23 int short_option,
33 m_option_definition.short_option = short_option;
20 OptionGroupUInt64(uint32_t usage_mask, bool required, const char *long_option, int short_option, uint32_t completion_type, lldb::CommandArgumentType argument_type, const char *usage_text, uint64_t default_value) argument
H A DOptionGroupUUID.cpp54 const int short_option = g_option_table[option_idx].short_option; local
56 switch (short_option)
65 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
H A DOptionGroupFile.cpp23 int short_option,
32 m_option_definition.short_option = short_option;
63 int short_option,
72 m_option_definition.short_option = short_option;
20 OptionGroupFile(uint32_t usage_mask, bool required, const char *long_option, int short_option, uint32_t completion_type, lldb::CommandArgumentType argument_type, const char *usage_text) argument
60 OptionGroupFileList(uint32_t usage_mask, bool required, const char *long_option, int short_option, uint32_t completion_type, lldb::CommandArgumentType argument_type, const char *usage_text) argument
H A DOptionGroupVariable.cpp80 const int short_option = g_option_table[option_idx].short_option; local
81 switch (short_option)
98 error.SetErrorStringWithFormat("unrecognized short option '%c'", short_option);
H A DOptionGroupWatchpoint.cpp76 const int short_option = g_option_table[option_idx].short_option; local
77 switch (short_option)
95 error.SetErrorStringWithFormat("unrecognized short option '%c'", short_option);
H A DOptionGroupFormat.cpp76 const int short_option = g_option_table[option_idx].short_option; local
78 switch (short_option)
200 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
H A DOptionGroupValueObjectDisplay.cpp69 const int short_option = g_option_table[option_idx].short_option; local
72 switch (short_option)
118 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
/external/lldb/source/Commands/
H A DCommandObjectHelp.h60 const int short_option = m_getopt_table[option_idx].val; local
62 switch (short_option)
71 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
H A DCommandObjectArgs.cpp59 const int short_option = m_getopt_table[option_idx].val; local
61 switch (short_option)
64 error.SetErrorStringWithFormat("invalid short option character '%c'", short_option);
H A DCommandObjectDisassemble.cpp67 const int short_option = m_getopt_table[option_idx].val; local
71 switch (short_option)
169 error.SetErrorStringWithFormat("unrecognized short option '%c'", short_option);
H A DCommandObjectExpression.cpp75 const int short_option = g_option_table[option_idx].short_option; local
77 switch (short_option)
131 error.SetErrorStringWithFormat("invalid short option character '%c'", short_option);
H A DCommandObjectLog.cpp137 const int short_option = m_getopt_table[option_idx].val; local
139 switch (short_option)
151 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
H A DCommandObjectRegister.cpp302 const int short_option = g_option_table[option_idx].short_option; local
303 switch (short_option)
330 error.SetErrorStringWithFormat("unrecognized short option '%c'", short_option);
H A DCommandObjectBreakpointCommand.cpp424 const int short_option = m_getopt_table[option_idx].val; local
426 switch (short_option)
/external/lldb/include/lldb/
H A Dlldb-private-types.h61 int short_option; // Single character for this option. member in struct:lldb_private::__anon25268
/external/lldb/tools/lldb-perf/lib/
H A DTestCase.cpp77 const int short_option = ::getopt_long_only (argc, local
83 switch (short_option)
94 done = !ParseOption(short_option, optarg);
H A DTestCase.h142 ParseOption (int short_option, const char* optarg) argument
/external/lldb/tools/lldb-perf/common/clang/
H A Dlldb_perf_clang.cpp354 const int short_option = ::getopt_long_only (argc, local
360 switch (short_option)
403 fprintf (stderr, "error: unrecognized option %c\n", short_option);
/external/lldb/tools/lldb-perf/common/stepping/
H A Dlldb-perf-stepping.cpp244 const int short_option = ::getopt_long_only (argc, local
250 switch (short_option)
294 fprintf (stderr, "error: unrecognized option %c\n", short_option);
/external/lldb/tools/lldb-perf/darwin/sketch/
H A Dsketch.cpp78 ParseOption (int short_option, const char* optarg) argument
80 switch (short_option)
123 fprintf (stderr, "error: unrecognized option %c\n", short_option);

Completed in 3692 milliseconds

12