Lines Matching defs:omsqbuf
96 netbsd32_msqid_ds14_to_native(struct netbsd32_msqid_ds14 *omsqbuf, struct msqid_ds *msqbuf)
99 netbsd32_ipc_perm14_to_native(&omsqbuf->msg_perm, &msqbuf->msg_perm);
101 #define CVT(x) msqbuf->x = omsqbuf->x
113 native_to_netbsd32_msqid_ds14(struct msqid_ds *msqbuf, struct netbsd32_msqid_ds14 *omsqbuf)
116 memset(omsqbuf, 0, sizeof *omsqbuf);
117 native_to_netbsd32_ipc_perm14(&msqbuf->msg_perm, &omsqbuf->msg_perm);
119 #define CVT(x) omsqbuf->x = msqbuf->x
132 omsqbuf->msg_cbytes = msqbuf->_msg_cbytes;
211 struct netbsd32_msqid_ds14 omsqbuf;
218 &omsqbuf, sizeof(omsqbuf));
221 netbsd32_msqid_ds14_to_native(&omsqbuf, &msqbuf);
228 native_to_netbsd32_msqid_ds14(&msqbuf, &omsqbuf);
229 error = copyout(&omsqbuf,
230 SCARG_P32(uap, buf), sizeof(omsqbuf));