Lines Matching defs:to_sb
84 struct stat from_sb, to_sb;
188 no_target = stat(to_name = argv[argc - 1], &to_sb);
189 if (!no_target && S_ISDIR(to_sb.st_mode)) {
203 if (!S_ISREG(to_sb.st_mode))
205 if (to_sb.st_dev == from_sb.st_dev &&
206 to_sb.st_ino == from_sb.st_ino)
221 struct stat from_sb, to_sb;
228 (void)memset((void *)&to_sb, 0, sizeof(to_sb));
248 if (stat(to_name, &to_sb) == 0) {
250 if (docompare && !S_ISREG(to_sb.st_mode)) {
302 to_name, to_sb.st_size) == 0) {
308 if (to_sb.st_nlink != 1) {
309 ts[0] = to_sb.st_atim;
310 ts[1] = to_sb.st_mtim;
374 if (to_sb.st_flags & (NOCHANGEBITS))
375 (void)chflags(to_name, to_sb.st_flags & ~(NOCHANGEBITS));