Home | History | Annotate | Download | only in engine

Lines Matching refs:dirs

145 	/* Whether to never use 'dirs', use 'dirs' as a fallback, or only use
146 * 'dirs' for loading. Default is to use 'dirs' as a fallback. */
149 STACK_OF(OPENSSL_STRING) *dirs;
176 if(ctx->dirs)
177 sk_OPENSSL_STRING_pop_free(ctx->dirs, int_free_str);
206 c->dirs = sk_OPENSSL_STRING_new_null();
207 if(!c->dirs)
396 sk_OPENSSL_STRING_insert(ctx->dirs, tmp_str, -1);
413 /* If we're not allowed to use 'dirs' or we have none, fail */
414 if(!ctx->dir_load || (num = sk_OPENSSL_STRING_num(ctx->dirs)) < 1)
418 const char *s = sk_OPENSSL_STRING_value(ctx->dirs, loop);