Lines Matching refs:path
951 const char *path; in file_open_ex() member
955 const char *path, *p = uri, *q; in file_open_ex() local
961 path_data[path_data_n++].path = uri; in file_open_ex()
995 path_data[path_data_n++].path = p; in file_open_ex()
999 for (i = 0, path = NULL; path == NULL && i < path_data_n; i++) { in file_open_ex()
1004 if (path_data[i].check_absolute && path_data[i].path[0] != '/') { in file_open_ex()
1006 ERR_add_error_data(1, path_data[i].path); in file_open_ex()
1010 if (stat(path_data[i].path, &st) < 0) { in file_open_ex()
1013 path_data[i].path); in file_open_ex()
1015 path = path_data[i].path; in file_open_ex()
1018 if (path == NULL) { in file_open_ex()
1033 ctx->_.dir.last_entry = OPENSSL_DIR_read(&ctx->_.dir.ctx, path); in file_open_ex()
1042 } else if ((ctx->_.file.file = BIO_new_file(path, "rb")) == NULL in file_open_ex()