Lines Matching refs:pathspec
977 char pathspec[PATH_MAX], pathtmp[4*PATH_MAX + 1]; in read_mtree_spec() local
984 if (strnunvis(pathspec, PATH_MAX, pathtmp) == -1) { in read_mtree_spec()
990 cp = strchr(pathspec, '/'); in read_mtree_spec()
999 if (IS_DOTDOT(pathspec)) { in read_mtree_spec()
1006 if (pathspec[0] != '\0' && !IS_DOT(pathspec)) in read_mtree_spec()
1007 error = read_mtree_spec1(fp, false, pathspec); in read_mtree_spec()
1008 memmove(pathspec, cp, strlen(cp) + 1); in read_mtree_spec()
1009 cp = strchr(pathspec, '/'); in read_mtree_spec()
1013 if (!error && (IS_DOT(pathspec) || IS_DOTDOT(pathspec))) { in read_mtree_spec()
1021 if (!error && pathspec[0] != '\0') in read_mtree_spec()
1022 error = read_mtree_spec1(fp, true, pathspec); in read_mtree_spec()