Home
last modified time | relevance | path

Searched refs:to_stat (Results 1 – 1 of 1) sorted by relevance

/freebsd/bin/cp/
H A Dcp.c87 struct stat to_stat, tmp_stat; in main() local
209 r = stat(to.p_path, &to_stat); in main()
212 if (r == -1 || !S_ISDIR(to_stat.st_mode)) { in main()
260 &to_stat))); in main()
267 struct stat created_root_stat, to_stat; in copy() local
438 if (stat(to.p_path, &to_stat) == 0 && in copy()
439 to_stat.st_dev == curr->fts_statp->st_dev && in copy()
440 to_stat.st_ino == curr->fts_statp->st_ino) { in copy()
450 dne = lstat(to.p_path, &to_stat) != 0; in copy()
511 } else if (!S_ISDIR(to_stat.st_mode)) { in copy()