Lines Matching defs:path
16 static int get_temp(char *path)
20 strcpy(path, TEMPL);
22 fd = mkstemp(path);
32 static int session_write_header(char *path)
36 .path = path,
61 static int check_cpu_topology(char *path, struct perf_cpu_map *map)
65 .path = path,
117 char path[PATH_MAX];
121 TEST_ASSERT_VAL("can't get templ file", !get_temp(path));
123 pr_debug("templ file: %s\n", path);
125 if (session_write_header(path))
134 ret = check_cpu_topology(path, map);
138 unlink(path);