Lines Matching refs:pathspec
968 char pathspec[PATH_MAX], pathtmp[4*PATH_MAX + 1]; in read_mtree_spec() local
975 if (strnunvis(pathspec, PATH_MAX, pathtmp) == -1) { in read_mtree_spec()
981 cp = strchr(pathspec, '/'); in read_mtree_spec()
990 if (IS_DOTDOT(pathspec)) { in read_mtree_spec()
997 if (pathspec[0] != '\0' && !IS_DOT(pathspec)) in read_mtree_spec()
998 error = read_mtree_spec1(fp, false, pathspec); in read_mtree_spec()
999 memmove(pathspec, cp, strlen(cp) + 1); in read_mtree_spec()
1000 cp = strchr(pathspec, '/'); in read_mtree_spec()
1004 if (!error && (IS_DOT(pathspec) || IS_DOTDOT(pathspec))) { in read_mtree_spec()
1012 if (!error && pathspec[0] != '\0') in read_mtree_spec()
1013 error = read_mtree_spec1(fp, true, pathspec); in read_mtree_spec()