Home | History | Annotate | Download | only in android

Lines Matching refs:oo

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