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) {
2185 const OPTIONS *opt;
2194 for (opt = &cmp_options[start_opt], i = start_idx;
2195 opt->name != NULL; i++, opt++)
2196 if (!strcmp(opt->name, OPT_SECTION_STR)
2197 || !strcmp(opt->name, OPT_MORE_STR))
2203 for (opt = &cmp_options[start_opt], i = start_idx;
2204 opt->name != NULL; i++, opt++) {
2205 int provider_option = (OPT_PROV__FIRST <= opt->retval
2206 && opt->retval < OPT_PROV__LAST);
2207 int rand_state_option = (OPT_R__FIRST <= opt->retval
2208 && opt->retval < OPT_R__LAST);
2209 int verification_option = (OPT_V__FIRST <= opt->retval
2210 && opt->retval < OPT_V__LAST);
2212 if (strcmp(opt->name, OPT_SECTION_STR) == 0
2213 || strcmp(opt->name, OPT_MORE_STR) == 0) {
2219 switch (opt->valtype) {
2225 if (!conf_get_number_e(conf, opt_section, opt->name, &num)) {
2229 if (opt->valtype == 'p' && num <= 0) {
2231 num, opt->name);
2234 if (opt->valtype == 'N' && num < 0) {
2236 num, opt->name);
2243 txt = conf_get_string(conf, opt_section, opt->name);
2251 opt->valtype, opt->name);
2260 BIO_snprintf(arg1, 81, "-%s", (char *)opt->name);
2263 if (opt->valtype == '-') {
2268 conf_argv[2] = conf_get_string(conf, opt_section, opt->name);
2278 opt->name, opt_section);
2283 switch (opt->valtype) {
2291 opt->name);