• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/bsd/kern/

Lines Matching refs:out

154 msqid_ds_64to32(struct user_msqid_ds *in, struct msqid_ds *out)
156 out->msg_perm = in->msg_perm;
157 out->msg_qnum = in->msg_qnum;
158 out->msg_cbytes = in->msg_cbytes; /* for ipcs */
159 out->msg_qbytes = in->msg_qbytes;
160 out->msg_lspid = in->msg_lspid;
161 out->msg_lrpid = in->msg_lrpid;
162 out->msg_stime = in->msg_stime; /* XXX loss of range */
163 out->msg_rtime = in->msg_rtime; /* XXX loss of range */
164 out->msg_ctime = in->msg_ctime; /* XXX loss of range */
173 msqid_ds_32to64(struct msqid_ds *in, struct user_msqid_ds *out)
175 out->msg_ctime = in->msg_ctime;
176 out->msg_rtime = in->msg_rtime;
177 out->msg_stime = in->msg_stime;
178 out->msg_lrpid = in->msg_lrpid;
179 out->msg_lspid = in->msg_lspid;
180 out->msg_qbytes = in->msg_qbytes;
181 out->msg_cbytes = in->msg_cbytes; /* for ipcs */
182 out->msg_qnum = in->msg_qnum;
183 out->msg_perm = in->msg_perm;
316 panic("msghdr->msg_spot out of range");
369 printf("msqid (%d) out of range (0<=msqid<%d)\n", msqid,
599 * while they are copying the message in/out. We
695 printf("msqid (%d) out of range (0<=msqid<%d)\n", msqid,
747 * out from under us and render our message invalid while we
910 panic("next out of range #1");
977 panic("next out of range #2");
1110 printf("msqid (%d) out of range (0<=msqid<%d)\n", msqid,
1239 * If there is one then bail out of this loop.
1334 * Copy out the message type. For a 64 bit process, this is 64 bits,
1353 printf("error (%d) copying out message type\n", eval);
1378 panic("next out of range #3");
1385 printf("error (%d) copying out message segment\n",
1397 * Done, return the actual number of bytes copied out.