Lines Matching defs:root
56 /* absolute; initialize npath with root */
218 /* absolute symlink; start over at root */
259 int t_normpath_to(const char *path, const char *root, const char **npath_r,
263 i_assert(root != NULL);
269 return t_normpath(t_strconcat(root, "/", path, NULL), npath_r, error_r);
277 int t_realpath_to(const char *path, const char *root, const char **npath_r,
281 i_assert(root != NULL);
287 return t_realpath(t_strconcat(root, "/", path, NULL), npath_r, error_r);
311 const char *t_abspath_to(const char *path, const char *root)
314 i_assert(root != NULL);
319 return t_strconcat(root, "/", path, NULL);