Lines Matching refs:lopt
24934 struct arm_long_option_table *lopt; in md_parse_option() local
24996 for (lopt = arm_long_opts; lopt->option != NULL; lopt++) in md_parse_option()
24999 if (c == lopt->option[0] in md_parse_option()
25001 && strncmp (arg, lopt->option + 1, in md_parse_option()
25002 strlen (lopt->option + 1)) == 0) in md_parse_option()
25005 if (warn_on_deprecated && lopt->deprecated != NULL) in md_parse_option()
25007 _(lopt->deprecated)); in md_parse_option()
25010 return lopt->func (arg + strlen (lopt->option) - 1); in md_parse_option()
25024 struct arm_long_option_table *lopt; in md_show_usage() local
25032 for (lopt = arm_long_opts; lopt->option != NULL; lopt++) in md_show_usage()
25033 if (lopt->help != NULL) in md_show_usage()
25034 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help)); in md_show_usage()