HomeSort by: relevance | last modified time | path
    Searched defs:to_stat (Results 1 - 2 of 2) sorted by relevancy

  /src/bin/cp/
utils.c 102 struct stat to_stat, *fs; local in function:copy_file
283 if (fstat(to_fd, &to_stat)) {
286 } else if (fs->st_gid == to_stat.st_gid &&
cp.c 108 struct stat to_stat, tmp_stat; local in function:main
238 r = lstat(to.p_path, &to_stat);
240 r = stat(to.p_path, &to_stat);
245 if (r == -1 || !S_ISDIR(to_stat.st_mode)) {
326 struct stat to_stat; local in function:copy
419 sval = Pflag ? lstat(to.p_path, &to_stat) : stat(to.p_path, &to_stat);
424 if (to_stat.st_dev == curr->fts_statp->st_dev &&
425 to_stat.st_ino == curr->fts_statp->st_ino) {
434 S_ISDIR(to_stat.st_mode))
    [all...]

Completed in 11 milliseconds