Lines Matching refs:oo
1591 OptionHelp const* oo; in android_help_for_option() local
1600 for ( oo = option_help; oo->name != NULL; oo++ ) { in android_help_for_option()
1601 if ( !strcmp(oo->name, temp) ) { in android_help_for_option()
1602 if (oo->func) in android_help_for_option()
1603 oo->func(out); in android_help_for_option()
1605 stralloc_add_str(out, oo->descr); in android_help_for_option()
1631 const OptionHelp* oo; in android_help_list_options() local
1635 for ( oo = option_help; oo->name != NULL; oo++ ) { in android_help_list_options()
1636 int width = strlen(oo->name); in android_help_list_options()
1637 if (oo->template != NULL) in android_help_list_options()
1638 width += strlen(oo->template); in android_help_list_options()
1643 for (oo = option_help; oo->name != NULL; oo++) { in android_help_list_options()
1648 buffer_translate_char(temp, sizeof temp, oo->name, '_', '-'); in android_help_list_options()
1652 (int)(maxwidth - strlen(oo->name)), in android_help_list_options()
1653 oo->template ? oo->template : "", in android_help_list_options()
1654 oo->descr ); in android_help_list_options()
1695 const OptionHelp* oo; in android_help_all() local
1698 for (oo = option_help; oo->name != NULL; oo++) { in android_help_all()
1699 PRINTF( "========= help for option -%s:\n\n", oo->name ); in android_help_all()
1700 android_help_for_option( oo->name, out ); in android_help_all()