Lines Matching refs:my_sb

136 		struct stat		my_sb;
139 my_err = stat( &g_target_path[0], &my_sb );
193 struct stat my_sb;
315 my_err = fstat( my_fd, &my_sb );
320 if ( my_sb.st_size != 0 ) {
417 my_err = stat( my_pathp, &my_sb );
422 if ( my_sb.st_size != 0 ) {
456 struct stat my_sb;
594 my_err = fstat( my_fd, &my_sb );
599 if ( my_sb.st_size != 6 ) {
603 if ( !S_ISREG( my_sb.st_mode ) ) {
636 struct stat my_sb;
667 my_err = stat( my_pathp, &my_sb );
672 my_link_count = my_sb.st_nlink;
675 if ( my_sb.st_size != 0 ) {
708 my_err = stat( my_pathp, &my_sb );
713 if ( (my_link_count + 1) != my_sb.st_nlink ) {
720 if ( my_sb.st_size != 3 ) {
732 my_err = stat( my_pathp, &my_sb );
737 if ( my_link_count != my_sb.st_nlink ) {
773 struct stat my_sb;
798 my_err = stat( my_pathp, &my_sb );
822 if ( my_sb.st_ino != my_sb2.st_ino || my_sb.st_size != my_sb2.st_size ||
823 my_sb.st_mtimespec.tv_sec != my_sb2.st_mtimespec.tv_sec ||
824 my_sb.st_mtimespec.tv_nsec != my_sb2.st_mtimespec.tv_nsec ) {
866 if ( my_sb.st_ino != my_sb2.st_ino || my_sb.st_size != my_sb2.st_size ||
867 my_sb.st_mtimespec.tv_sec != my_sb2.st_mtimespec.tv_sec ||
868 my_sb.st_mtimespec.tv_nsec != my_sb2.st_mtimespec.tv_nsec ) {
904 struct stat my_sb;
960 my_err = stat( my_pathp, &my_sb );
966 if ( (my_sb.st_mode & (S_IRWXO | S_IXGRP)) != 0 ||
967 (my_sb.st_mode & (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP)) == 0 ) {
1062 my_err = stat( my_pathp, &my_sb );
1069 if ( (my_sb.st_mode & (S_IRWXG | S_IRWXO)) != 0 ||
1070 (my_sb.st_mode & (S_IRWXU)) == 0 ) {
1125 struct stat my_sb;
1174 my_err = stat( my_pathp, &my_sb );
1181 my_orig_gid = my_sb.st_gid;
1182 my_orig_uid = my_sb.st_uid;
1207 my_err = stat( my_pathp, &my_sb );
1212 if ( my_sb.st_gid == my_orig_gid ) {
1232 my_err = stat( my_pathp, &my_sb );
1237 if ( my_sb.st_gid == my_new_gid1 ) {
1249 my_err = lstat( my_link_pathp, &my_sb );
1256 my_orig_gid = my_sb.st_gid;
1257 my_orig_uid = my_sb.st_uid;
1265 my_err = lstat( my_link_pathp, &my_sb );
1270 if ( my_sb.st_gid == my_new_gid2 ) {
1919 struct stat my_sb;
1939 my_err = stat( my_pathp, &my_sb );
1945 my_flags = (my_sb.st_flags | UF_IMMUTABLE);
1967 my_err = stat( my_pathp, &my_sb );
1973 my_flags = (my_sb.st_flags & ~UF_IMMUTABLE);
3087 struct stat my_sb;
3119 my_err = stat( my_pathp, &my_sb );
3124 if ( (my_sb.st_mode & (S_IXUSR | S_IWGRP | S_IXGRP | S_IWOTH | S_IXOTH)) != 0 ) {
3207 struct stat my_sb;
3217 my_err = stat( "/", &my_sb );
3222 if ( my_sb.st_nlink > 2 ) {
3541 struct stat my_sb;
3602 my_err = stat( my_pathp, &my_sb );
3607 TIMESPEC_TO_TIMEVAL( &my_utimes[0], &my_sb.st_atimespec );
3608 TIMESPEC_TO_TIMEVAL( &my_utimes[1], &my_sb.st_mtimespec );
3619 my_err = stat( my_pathp, &my_sb );
3624 TIMESPEC_TO_TIMEVAL( &my_utimes[2], &my_sb.st_atimespec );
3625 TIMESPEC_TO_TIMEVAL( &my_utimes[3], &my_sb.st_mtimespec );
3647 my_err = stat( my_pathp, &my_sb );
3652 TIMESPEC_TO_TIMEVAL( &my_utimes[2], &my_sb.st_atimespec );
3653 TIMESPEC_TO_TIMEVAL( &my_utimes[3], &my_sb.st_mtimespec );
3686 struct stat my_sb;
3722 my_err = stat( my_pathp, &my_sb );
3727 my_file_id = my_sb.st_ino;
3737 my_err = stat( my_pathp, &my_sb );
3744 my_err = stat( my_new_pathp, &my_sb );
3749 if ( my_file_id != my_sb.st_ino ) {