Lines Matching defs:root
241 /* Special rule, if we are talking of the root directory, a
392 * to detect the root directory, which we should always
445 * assume this is the root directory, which is a mount
470 * special case though for the root file system. For that,
485 * be the root directory */
543 char *prefix_root(const char *root, const char *path) {
547 /* If root is passed, prefixes path with it. Otherwise returns
556 if (isempty(root) || path_equal(root, "/"))
559 l = strlen(root) + 1 + strlen(path) + 1;
565 p = stpcpy(n, root);