Lines Matching defs:stat_buf
899 struct stat stat_buf;
915 statret = stat(socket_name, &stat_buf);
920 if ( ! (stat_buf.st_uid == 0 &&
921 stat_buf.st_gid == 0 &&
922 S_ISSOCK(stat_buf.st_mode) &&
923 (stat_buf.st_mode & ~S_IFMT) == 0600 )) {
930 statret = stat(socket_name, &stat_buf);
935 if ( ! (stat_buf.st_uid == 0 &&
936 stat_buf.st_gid == 0 &&
937 S_ISSOCK(stat_buf.st_mode) &&
938 (stat_buf.st_mode & ~S_IFMT) == 0666 )) {