Lines Matching defs:opt
2108 static const char *prev_item(const char *opt, const char *end)
2113 if (end == opt)
2116 while (beg > opt) {
2131 while (beg > opt) {
2184 const OPTIONS *opt;
2193 for (opt = &cmp_options[start_opt], i = start_idx;
2194 opt->name != NULL; i++, opt++)
2195 if (!strcmp(opt->name, OPT_SECTION_STR)
2196 || !strcmp(opt->name, OPT_MORE_STR))
2202 for (opt = &cmp_options[start_opt], i = start_idx;
2203 opt->name != NULL; i++, opt++) {
2204 int provider_option = (OPT_PROV__FIRST <= opt->retval
2205 && opt->retval < OPT_PROV__LAST);
2206 int rand_state_option = (OPT_R__FIRST <= opt->retval
2207 && opt->retval < OPT_R__LAST);
2208 int verification_option = (OPT_V__FIRST <= opt->retval
2209 && opt->retval < OPT_V__LAST);
2211 if (strcmp(opt->name, OPT_SECTION_STR) == 0
2212 || strcmp(opt->name, OPT_MORE_STR) == 0) {
2218 switch (opt->valtype) {
2224 if (!conf_get_number_e(conf, opt_section, opt->name, &num)) {
2228 if (opt->valtype == 'p' && num <= 0) {
2230 num, opt->name);
2233 if (opt->valtype == 'N' && num < 0) {
2235 num, opt->name);
2242 txt = conf_get_string(conf, opt_section, opt->name);
2250 opt->valtype, opt->name);
2259 BIO_snprintf(arg1, 81, "-%s", (char *)opt->name);
2262 if (opt->valtype == '-') {
2267 conf_argv[2] = conf_get_string(conf, opt_section, opt->name);
2277 opt->name, opt_section);
2282 switch (opt->valtype) {
2290 opt->name);