Lines Matching defs:root
39 static int files_add(Hashmap *h, const char *root, const char *path, const char *suffix) {
48 dirpath = prefix_roota(root, path);
91 static int conf_files_list_strv_internal(char ***strv, const char *suffix, const char *root, char **dirs) {
100 if (!path_strv_resolve_uniq(dirs, root))
108 r = files_add(fh, root, *p, suffix);
125 int conf_files_list_strv(char ***strv, const char *suffix, const char *root, const char* const* dirs) {
135 return conf_files_list_strv_internal(strv, suffix, root, copy);
138 int conf_files_list(char ***strv, const char *suffix, const char *root, const char *dir, ...) {
152 return conf_files_list_strv_internal(strv, suffix, root, dirs);
155 int conf_files_list_nulstr(char ***strv, const char *suffix, const char *root, const char *d) {
165 return conf_files_list_strv_internal(strv, suffix, root, dirs);