Lines Matching refs:res
83 char *res;
91 res = strappend(e, suffix);
97 res = strjoin(home, "/.local/share", suffix, NULL);
101 if (!res)
104 *dir = res;
133 _cleanup_free_ char **res = NULL;
175 if (strv_extend(&res, generator_early) < 0)
179 if (strv_extend(&res, config_home) < 0)
183 if (strv_extend_strv_concat(&res, config_dirs, "/systemd/user") < 0)
186 if (strv_extend_strv(&res, (char**) config_unit_paths, false) < 0)
190 if (strv_extend(&res, runtime_dir) < 0)
193 if (strv_extend(&res, runtime_unit_path) < 0)
197 if (strv_extend(&res, generator) < 0)
201 if (strv_extend(&res, data_home) < 0)
205 if (strv_extend_strv_concat(&res, data_dirs, "/systemd/user") < 0)
208 if (strv_extend_strv(&res, (char**) data_unit_paths, false) < 0)
212 if (strv_extend(&res, generator_late) < 0)
215 if (path_strv_make_absolute_cwd(res) < 0)
218 tmp = res;
219 res = NULL;