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
45 int X509_STORE_load_file_ex(X509_STORE *ctx, const char *file,
50 if (file == NULL
52 || X509_LOOKUP_load_file_ex(lookup, file, X509_FILETYPE_PEM, libctx,
59 int X509_STORE_load_file(X509_STORE *ctx, const char *file)
61 return X509_STORE_load_file_ex(ctx, file, NULL, NULL);
94 int X509_STORE_load_locations_ex(X509_STORE *ctx, const char *file,
98 if (file == NULL && path == NULL)
100 if (file != NULL && !X509_STORE_load_file_ex(ctx, file, libctx, propq))
107 int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
110 return X509_STORE_load_locations_ex(ctx, file, path, NULL, NULL);