Lines Matching refs:opt

2120 static const char *prev_item(const char *opt, const char *end)  in prev_item()  argument
2125 if (end == opt) in prev_item()
2128 while (beg > opt) { in prev_item()
2143 while (beg > opt) { in prev_item()
2196 const OPTIONS *opt; in read_config() local
2205 for (opt = &cmp_options[start_opt], i = start_idx; in read_config()
2206 opt->name != NULL; i++, opt++) in read_config()
2207 if (!strcmp(opt->name, OPT_SECTION_STR) in read_config()
2208 || !strcmp(opt->name, OPT_MORE_STR)) in read_config()
2214 for (opt = &cmp_options[start_opt], i = start_idx; in read_config()
2215 opt->name != NULL; i++, opt++) { in read_config()
2216 int provider_option = (OPT_PROV__FIRST <= opt->retval in read_config()
2217 && opt->retval < OPT_PROV__LAST); in read_config()
2218 int rand_state_option = (OPT_R__FIRST <= opt->retval in read_config()
2219 && opt->retval < OPT_R__LAST); in read_config()
2220 int verification_option = (OPT_V__FIRST <= opt->retval in read_config()
2221 && opt->retval < OPT_V__LAST); in read_config()
2223 if (strcmp(opt->name, OPT_SECTION_STR) == 0 in read_config()
2224 || strcmp(opt->name, OPT_MORE_STR) == 0) { in read_config()
2230 switch (opt->valtype) { in read_config()
2236 if (!conf_get_number_e(conf, opt_section, opt->name, &num)) { in read_config()
2240 if (opt->valtype == 'p' && num <= 0) { in read_config()
2242 num, opt->name); in read_config()
2245 if (opt->valtype == 'N' && num < 0) { in read_config()
2247 num, opt->name); in read_config()
2254 txt = conf_get_string(conf, opt_section, opt->name); in read_config()
2262 opt->valtype, opt->name); in read_config()
2271 BIO_snprintf(arg1, 81, "-%s", (char *)opt->name); in read_config()
2274 if (opt->valtype == '-') { in read_config()
2279 conf_argv[2] = conf_get_string(conf, opt_section, opt->name); in read_config()
2289 opt->name, opt_section); in read_config()
2294 switch (opt->valtype) { in read_config()
2302 opt->name); in read_config()