Lines Matching refs:ub
862 pipe_stat(file_t *fp, struct stat *ub)
867 memset(ub, 0, sizeof(*ub));
868 ub->st_mode = S_IFIFO | S_IRUSR | S_IWUSR;
869 ub->st_blksize = pipe->pipe_buffer.size;
870 if (ub->st_blksize == 0 && pipe->pipe_peer)
871 ub->st_blksize = pipe->pipe_peer->pipe_buffer.size;
872 ub->st_size = pipe->pipe_buffer.cnt;
873 ub->st_blocks = (ub->st_size) ? 1 : 0;
874 ub->st_atimespec = pipe->pipe_atime;
875 ub->st_mtimespec = pipe->pipe_mtime;
876 ub->st_ctimespec = ub->st_birthtimespec = pipe->pipe_btime;
877 ub->st_uid = kauth_cred_geteuid(fp->f_cred);
878 ub->st_gid = kauth_cred_getegid(fp->f_cred);