Searched refs:short_option (Results 26 - 46 of 46) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp64 const int short_option = m_getopt_table[option_idx].val; variable
66 switch (short_option) {
237 const int short_option = m_getopt_table[option_idx].val; variable
239 switch (short_option) {
353 const int short_option = GetDefinitions()[option_idx].short_option; variable
356 switch (short_option) {
1149 const int short_option = m_getopt_table[option_idx].val; variable
1151 switch (short_option) {
1402 const int short_option variable
1524 const int short_option = m_getopt_table[option_idx].val; variable
[all...]
H A DCommandObjectProcess.cpp275 const int short_option = m_getopt_table[option_idx].val; variable
276 switch (short_option) {
331 if (GetDefinitions()[opt_defs_index].short_option != 'n')
523 const int short_option = m_getopt_table[option_idx].val; variable
524 switch (short_option) {
663 const int short_option = m_getopt_table[option_idx].val; variable
665 switch (short_option) {
758 const int short_option = m_getopt_table[option_idx].val; variable
760 switch (short_option) {
877 const int short_option variable
1251 const int short_option = m_getopt_table[option_idx].val; variable
[all...]
H A DCommandObjectType.cpp293 const int short_option = m_getopt_table[option_idx].val; variable
296 switch (short_option) {
519 const int short_option = variable
520 g_type_format_add_options[option_idx].short_option;
523 switch (short_option) {
720 const int short_option = m_getopt_table[option_idx].val; variable
722 switch (short_option) {
855 const int short_option = m_getopt_table[option_idx].val; variable
857 switch (short_option) {
968 const int short_option variable
1171 const int short_option = m_getopt_table[option_idx].val; local
1713 const int short_option = m_getopt_table[option_idx].val; variable
1809 const int short_option = m_getopt_table[option_idx].val; variable
1976 const int short_option = m_getopt_table[option_idx].val; variable
2382 const int short_option = m_getopt_table[option_idx].val; variable
2649 const int short_option = g_type_lookup_options[option_idx].short_option; variable
[all...]
H A DCommandObjectRegister.cpp248 const int short_option = GetDefinitions()[option_idx].short_option; variable
249 switch (short_option) {
H A DCommandObjectWatchpoint.cpp180 const int short_option = m_getopt_table[option_idx].val; variable
182 switch (short_option) {
452 const int short_option = m_getopt_table[option_idx].val; variable
454 switch (short_option) {
571 const int short_option = m_getopt_table[option_idx].val; variable
573 switch (short_option) {
691 const int short_option = m_getopt_table[option_idx].val; variable
693 switch (short_option) {
H A DCommandObjectMemory.cpp62 const int short_option = g_memory_read_options[option_idx].short_option; variable
64 switch (short_option) {
914 const int short_option = g_memory_find_options[option_idx].short_option; variable
916 switch (short_option) {
1202 const int short_option = g_memory_write_options[option_idx].short_option; variable
1204 switch (short_option) {
H A DCommandObjectLog.cpp86 const int short_option = m_getopt_table[option_idx].val; variable
88 switch (short_option) {
H A DCommandObjectFrame.cpp59 const int short_option = m_getopt_table[option_idx].val; variable
60 switch (short_option) {
237 const int short_option = m_getopt_table[option_idx].val; variable
238 switch (short_option) {
740 const int short_option = m_getopt_table[option_idx].val; variable
742 switch (short_option) {
H A DCommandObjectSettings.cpp97 const int short_option = m_getopt_table[option_idx].val; variable
99 switch (short_option) {
342 const int short_option = m_getopt_table[option_idx].val; variable
344 switch (short_option) {
443 const int short_option = m_getopt_table[option_idx].val; variable
445 switch (short_option) {
H A DCommandObjectExpression.cpp56 const int short_option = GetDefinitions()[option_idx].short_option; local
58 switch (short_option) {
H A DCommandObjectSource.cpp45 const int short_option = GetDefinitions()[option_idx].short_option; variable
46 switch (short_option) {
634 const int short_option = GetDefinitions()[option_idx].short_option; variable
635 switch (short_option) {
H A DCommandObjectDisassemble.cpp48 const int short_option = m_getopt_table[option_idx].val; local
50 switch (short_option) {
H A DCommandObjectWatchpointCommand.cpp325 const int short_option = m_getopt_table[option_idx].val; variable
327 switch (short_option) {
H A DCommandObjectTarget.cpp177 const char short_option = variable
178 g_target_dependents_options[option_idx].short_option;
179 if (short_option == 'd') {
188 short_option);
1965 const int short_option = m_getopt_table[option_idx].val; variable
1967 switch (short_option) {
2913 const int short_option = m_getopt_table[option_idx].val; variable
2914 if (short_option == 'g') {
2916 } else if (short_option == 'a') {
2922 m_format_array.push_back(std::make_pair(short_option, widt
3267 const int short_option = m_getopt_table[option_idx].val; variable
3590 const int short_option = m_getopt_table[option_idx].val; variable
4426 const int short_option = m_getopt_table[option_idx].val; variable
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1396 char short_option = (char)GetDefinitions()[option_idx].short_option; local
1397 switch (short_option) {
1415 error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
1442 char short_option = (char)GetDefinitions()[option_idx].short_option; local
1443 switch (short_option) {
1453 error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
1473 char short_option = (char)GetDefinitions()[option_idx].short_option; local
[all...]
H A DProcess.cpp247 const int short_option = m_getopt_table[option_idx].val; local
249 switch (short_option) {
353 short_option);
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptions.h81 void OptionSeen(int short_option);
/freebsd-12-stable/contrib/ofed/opensm/opensm/
H A Dmain.c616 const char *const short_option = local
715 next_option = getopt_long_only(argc, argv, short_option,
739 next_option = getopt_long_only(argc, argv, short_option,
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp4089 const int short_option = m_getopt_table[option_idx].val; local
4090 switch (short_option) {
4109 err.SetErrorStringWithFormat("Invalid option '-%c'", short_option);
4243 const int short_option = m_getopt_table[option_idx].val; local
4245 switch (short_option) {
4259 err.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
4524 const int short_option = m_getopt_table[option_idx].val; local
4526 switch (short_option) {
4537 err.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
4652 const int short_option local
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp501 const int short_option = m_getopt_table[option_idx].val; variable
502 switch (short_option) {
560 error.SetErrorStringWithFormat("unsupported option '%c'", short_option);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp524 const int short_option = m_getopt_table[option_idx].val; variable
525 switch (short_option) {
533 short_option);

Completed in 396 milliseconds

12