Lines Matching refs:path
17 static int get_temp(char *path)
21 strcpy(path, TEMPL);
23 fd = mkstemp(path);
33 static int session_write_header(char *path)
37 .path = path,
62 static int check_cpu_topology(char *path, struct perf_cpu_map *map)
66 .path = path,
207 char path[PATH_MAX];
211 TEST_ASSERT_VAL("can't get templ file", !get_temp(path));
213 pr_debug("templ file: %s\n", path);
215 if (session_write_header(path))
224 ret = check_cpu_topology(path, map);
228 unlink(path);