Lines Matching defs:dir
649 close_file(FILE *stream, char const *dir, char const *name,
656 dir ? dir : "", dir ? "/" : "",
686 change_directory(char const *dir)
688 if (chdir(dir) != 0) {
691 mkdirs(dir, false);
692 chdir_errno = chdir(dir) == 0 ? 0 : errno;
696 progname, dir, strerror(chdir_errno));
1435 /* Return true if A and B must have the same parent dir if A and B exist.