Home | History | Annotate | Download | only in android

Lines Matching refs:oo

1582     OptionHelp const*  oo;
1591 for ( oo = option_help; oo->name != NULL; oo++ ) {
1592 if ( !strcmp(oo->name, temp) ) {
1593 if (oo->func)
1594 oo->func(out);
1596 stralloc_add_str(out, oo->descr);
1622 const OptionHelp* oo;
1626 for ( oo = option_help; oo->name != NULL; oo++ ) {
1627 int width = strlen(oo->name);
1628 if (oo->template != NULL)
1629 width += strlen(oo->template);
1634 for (oo = option_help; oo->name != NULL; oo++) {
1639 buffer_translate_char(temp, sizeof temp, oo->name, '_', '-');
1643 (int)(maxwidth - strlen(oo->name)),
1644 oo->template ? oo->template : "",
1645 oo->descr );
1686 const OptionHelp* oo;
1689 for (oo = option_help; oo->name != NULL; oo++) {
1690 PRINTF( "========= help for option -%s:\n\n", oo->name );
1691 android_help_for_option( oo->name, out );