Lines Matching refs:msgdata
192 struct strbuf msgctl, msgdata; in msgio() local
226 copyin(data, &msgdata, sizeof (struct strbuf))) { in msgio()
235 msgdata.maxlen = -1; in msgio()
239 error = sock_getmsg(vp, &msgctl, &msgdata, prip, in msgio()
242 error = strgetmsg(vp, &msgctl, &msgdata, prip, in msgio()
255 copyout(&msgdata, data, sizeof (struct strbuf)))) { in msgio()
269 msgdata.len = -1; in msgio()
272 error = sock_putmsg(vp, &msgctl, &msgdata, *prip, *flagsp, in msgio()
275 error = strputmsg(vp, &msgctl, &msgdata, *prip, *flagsp, flag); in msgio()
422 struct strbuf msgctl, msgdata; in msgio32() local
464 msgdata.len = msgdata32.len; in msgio32()
465 msgdata.maxlen = msgdata32.maxlen; in msgio32()
466 msgdata.buf = (caddr_t)(uintptr_t)msgdata32.buf; in msgio32()
473 msgdata.maxlen = -1; in msgio32()
477 error = sock_getmsg(vp, &msgctl, &msgdata, prip, in msgio32()
480 error = strgetmsg(vp, &msgctl, &msgdata, prip, in msgio32()
502 msgdata32.len = msgdata.len; in msgio32()
503 msgdata32.maxlen = msgdata.maxlen; in msgio32()
504 msgdata32.buf = (caddr32_t)(uintptr_t)msgdata.buf; in msgio32()
520 msgdata.len = -1; in msgio32()
523 error = sock_putmsg(vp, &msgctl, &msgdata, *prip, *flagsp, in msgio32()
526 error = strputmsg(vp, &msgctl, &msgdata, *prip, *flagsp, flag); in msgio32()