Lines Matching defs:path
16 /* Skipping relabel path if define in ignore_cfg. */
36 new_node->path = strdup(line);
37 if (new_node->path == NULL) {
134 static bool find_ignore_path(ignore_path_node_t *current, const char *path)
137 if (strcmp(path, current->path) == 0) {
145 enum skip_type skip_ignore_relabel(const char *path)
147 if (find_ignore_path(g_ignore_paths.slash_suffix_paths, path)) {
150 if (find_ignore_path(g_ignore_paths.star_suffix_paths, path)) {
161 free(temp->path);