Home | History | Annotate | Download | only in config

Lines Matching full:lopt

7444   struct aarch64_long_option_table *lopt;
7484 for (lopt = aarch64_long_opts; lopt->option != NULL; lopt++)
7487 if (c == lopt->option[0]
7489 && strncmp (arg, lopt->option + 1,
7490 strlen (lopt->option + 1)) == 0)
7493 if (lopt->deprecated != NULL)
7495 _(lopt->deprecated));
7498 return lopt->func (arg + strlen (lopt->option) - 1);
7512 struct aarch64_long_option_table *lopt;
7520 for (lopt = aarch64_long_opts; lopt->option != NULL; lopt++)
7521 if (lopt->help != NULL)
7522 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));