Lines Matching refs:dirs
109 * Whether to never use 'dirs', use 'dirs' as a fallback, or only use
110 * 'dirs' for loading. Default is to use 'dirs' as a fallback.
114 STACK_OF(OPENSSL_STRING) *dirs;
146 sk_OPENSSL_STRING_pop_free(ctx->dirs, int_free_str);
166 c->dirs = sk_OPENSSL_STRING_new_null();
167 if (c->dirs == NULL) {
194 sk_OPENSSL_STRING_free(c->dirs);
364 if (!sk_OPENSSL_STRING_push(ctx->dirs, tmp_str)) {
386 /* If we're not allowed to use 'dirs' or we have none, fail */
387 if (!ctx->dir_load || (num = sk_OPENSSL_STRING_num(ctx->dirs)) < 1)
390 const char *s = sk_OPENSSL_STRING_value(ctx->dirs, loop);