Lines Matching defs:include_path
446 char *include_path = NULL;
476 include_path = OPENSSL_malloc(newlen);
477 if (include_path == NULL) {
483 OPENSSL_strlcpy(include_path, include_dir, newlen);
484 if (!ossl_ends_with_dirsep(include_path))
485 OPENSSL_strlcat(include_path, "/", newlen);
486 OPENSSL_strlcat(include_path, include, newlen);
489 include_path = include;
493 && !ossl_is_absolute_path(include_path)) {
495 OPENSSL_free(include_path);
501 next = process_include(include_path, &dirctx, &dirpath);
502 if (include_path != dirpath) {
504 OPENSSL_free(include_path);
507 next = BIO_new_file(include_path, "r");
508 OPENSSL_free(include_path);