Searched defs:to_stat (Results 1 - 2 of 2) sorted by relevance

/system/core/toolbox/cp/
H A Dcp.c108 struct stat to_stat, tmp_stat; local
242 r = lstat(to.p_path, &to_stat);
244 r = stat(to.p_path, &to_stat);
249 if (r == -1 || !S_ISDIR(to_stat.st_mode)) {
330 struct stat to_stat; local
423 sval = Pflag ? lstat(to.p_path, &to_stat) : stat(to.p_path, &to_stat);
428 if (to_stat.st_dev == curr->fts_statp->st_dev &&
429 to_stat.st_ino == curr->fts_statp->st_ino) {
438 S_ISDIR(to_stat
[all...]
H A Dutils.c115 struct stat to_stat, *fs; local
300 if (fstat(to_fd, &to_stat)) {
303 } else if (fs->st_gid == to_stat.st_gid &&

Completed in 39 milliseconds