Lines Matching refs:path
32 const char *path = getenv("KCONFIG_PATH");
35 if (path) {
36 if (!access(path, F_OK))
37 return path;
39 tst_res(TWARN, "KCONFIG_PATH='%s' does not exist", path);
47 /* Common install module path */
82 const char *path = kconfig_path(path_buf, sizeof(path_buf));
84 if (!path)
87 tst_res(TINFO, "Parsing kernel config '%s'", path);
89 is_gzip = !!strstr(path, ".gz");
92 snprintf(buf, sizeof(buf), "zcat '%s'", path);
95 fp = fopen(path, "r");
99 tst_brk(TBROK | TERRNO, "Failed to open '%s'", path);