Lines Matching refs:cur_opt
109 const struct option *cur_opt;
142 cur_opt = longopts;
143 while (cur_opt && cur_opt->name) {
144 if (cur_opt->flag) {
146 " is non-null\n", cur_opt->name);
149 if (!strchr(all_options, cur_opt->val)) {
152 cur_opt->name, cur_opt->val, all_options);
155 if (strchr(longopt_vals, cur_opt->val)) {
158 cur_opt->name, cur_opt->val);
161 if (asprintf(&longopt_vals, "%s%c", longopt_vals, cur_opt->val)
166 cur_opt++;