Lines Matching refs:file
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
28 "Load file into cache",
52 const char *file;
57 file = ossl_safe_getenv(X509_get_default_cert_file_env());
58 if (file)
59 ok = (X509_load_cert_crl_file_ex(ctx, file, X509_FILETYPE_PEM,
89 int X509_load_cert_file_ex(X509_LOOKUP *ctx, const char *file, int type,
99 if ((in == NULL) || (BIO_read_filename(in, file) <= 0)) {
154 int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type)
156 return X509_load_cert_file_ex(ctx, file, type, NULL, NULL);
159 int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type)
168 if ((in == NULL) || (BIO_read_filename(in, file) <= 0)) {
216 int X509_load_cert_crl_file_ex(X509_LOOKUP *ctx, const char *file, int type,
225 return X509_load_cert_file_ex(ctx, file, type, libctx, propq);
226 in = BIO_new_file(file, "r");
257 int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type)
259 return X509_load_cert_crl_file_ex(ctx, file, type, NULL, NULL);