Lines Matching defs:opt
638 char *next_item(char *opt) /* in list separated by comma and/or space */
641 while (*opt != ',' && !isspace(*opt) && *opt != '\0')
642 opt++;
643 if (*opt != '\0') {
645 *opt++ = '\0';
647 while (isspace(*opt))
648 opt++;
650 return *opt == '\0' ? NULL : opt; /* NULL indicates end of input */
2164 char *opt = sk_OPENSSL_STRING_value(opts, i);
2165 if (pkey_ctrl_string(pkctx, opt) <= 0) {
2166 BIO_printf(bio_err, "parameter error \"%s\"\n", opt);
2183 char *opt = sk_OPENSSL_STRING_value(opts, i);
2184 if (x509_ctrl_string(x, opt) <= 0) {
2185 BIO_printf(bio_err, "parameter error \"%s\"\n", opt);
2202 char *opt = sk_OPENSSL_STRING_value(opts, i);
2203 if (x509_req_ctrl_string(x, opt) <= 0) {
2204 BIO_printf(bio_err, "parameter error \"%s\"\n", opt);
3298 char *opt = "", *stmp, *vtmp = NULL;
3309 opt = sk_OPENSSL_STRING_value(opts, (int)params_n);
3310 if ((stmp = OPENSSL_strdup(opt)) == NULL
3327 opt);