Lines Matching refs:sb

86 	file_mode = arcn->sb.st_mode & FILEBITS;  in file_creat()
109 if (nodirs || chk_path(arcn->name,arcn->sb.st_uid,arcn->sb.st_gid) < 0) { in file_creat()
142 res = set_ids(arcn->name, arcn->sb.st_uid, arcn->sb.st_gid); in file_close()
150 arcn->sb.st_mode &= ~(SETBITS); in file_close()
152 set_pmode(arcn->name, arcn->sb.st_mode); in file_close()
154 set_ftime(arcn->name, arcn->sb.st_mtime, arcn->sb.st_atime, 0); in file_close()
168 struct stat sb; in lnk_creat() local
174 if (lstat(arcn->ln_name, &sb) < 0) { in lnk_creat()
180 if (S_ISDIR(sb.st_mode)) { in lnk_creat()
186 return(mk_link(arcn->ln_name, &sb, arcn->name, 0)); in lnk_creat()
209 return(mk_link(arcn->org_name, &(arcn->sb), arcn->name, 1)); in cross_lnk()
226 struct stat sb; in chk_same() local
232 if (lstat(arcn->name, &sb) < 0) in chk_same()
240 if ((arcn->sb.st_dev == sb.st_dev) && (arcn->sb.st_ino == sb.st_ino)) { in chk_same()
264 struct stat sb; in mk_link() local
271 if (lstat(from, &sb) == 0) { in mk_link()
278 if ((to_sb->st_dev==sb.st_dev)&&(to_sb->st_ino == sb.st_ino)) { in mk_link()
286 if (S_ISDIR(sb.st_mode)) { in mk_link()
341 struct stat sb; in node_creat() local
349 file_mode = arcn->sb.st_mode & FILEBITS; in node_creat()
360 res = mknod(arcn->name, file_mode, arcn->sb.st_rdev); in node_creat()
364 res = mknod(arcn->name, file_mode, arcn->sb.st_rdev); in node_creat()
411 if (nodirs || chk_path(arcn->name,arcn->sb.st_uid,arcn->sb.st_gid) < 0) { in node_creat()
421 res = set_ids(arcn->name, arcn->sb.st_uid, arcn->sb.st_gid); in node_creat()
431 arcn->sb.st_mode &= ~(SETBITS); in node_creat()
433 set_pmode(arcn->name, arcn->sb.st_mode); in node_creat()
446 if (lstat(arcn->name, &sb) < 0) { in node_creat()
458 ((sb.st_mode & FILEBITS) | S_IRWXU)); in node_creat()
460 arcn->sb.st_mode = sb.st_mode; in node_creat()
467 add_dir(arcn->name, arcn->nlen, &(arcn->sb), 1); in node_creat()
469 add_dir(arcn->name, arcn->nlen, &(arcn->sb), 0); in node_creat()
473 set_ftime(arcn->name, arcn->sb.st_mtime, arcn->sb.st_atime, 0); in node_creat()
492 struct stat sb; in unlnk_exist() local
497 if (lstat(name, &sb) < 0) in unlnk_exist()
502 if (S_ISDIR(sb.st_mode)) { in unlnk_exist()
544 struct stat sb; in chk_path() local
576 if (lstat(name, &sb) == 0) { in chk_path()
607 (lstat(name, &sb) == 0)) { in chk_path()
608 set_pmode(name, ((sb.st_mode & FILEBITS) | S_IRWXU)); in chk_path()
609 add_dir(name, spt - name, &sb, 1); in chk_path()
633 struct stat sb; in set_ftime() local
642 if (lstat(fnm, &sb) == 0) { in set_ftime()
644 tv[0].tv_sec = sb.st_atime; in set_ftime()
646 tv[1].tv_sec = sb.st_mtime; in set_ftime()
875 set_ftime(arcn->org_name, arcn->sb.st_mtime, arcn->sb.st_atime, 1); in rdfile_close()
897 struct stat sb; in set_crc() local
907 if ((size = (u_long)arcn->sb.st_blksize) > (u_long)sizeof(tbuf)) in set_crc()
926 if (cpcnt != arcn->sb.st_size) in set_crc()
928 else if (fstat(fd, &sb) < 0) in set_crc()
930 else if (arcn->sb.st_mtime != sb.st_mtime) in set_crc()