Lines Matching refs:msgdata
195 struct strbuf msgctl, msgdata; in msgio() local
229 copyin(data, &msgdata, sizeof (struct strbuf))) { in msgio()
238 msgdata.maxlen = -1; in msgio()
242 error = sock_getmsg(vp, &msgctl, &msgdata, prip, in msgio()
245 error = strgetmsg(vp, &msgctl, &msgdata, prip, in msgio()
258 copyout(&msgdata, data, sizeof (struct strbuf)))) { in msgio()
272 msgdata.len = -1; in msgio()
275 error = sock_putmsg(vp, &msgctl, &msgdata, *prip, *flagsp, in msgio()
278 error = strputmsg(vp, &msgctl, &msgdata, *prip, *flagsp, flag); in msgio()
425 struct strbuf msgctl, msgdata; in msgio32() local
467 msgdata.len = msgdata32.len; in msgio32()
468 msgdata.maxlen = msgdata32.maxlen; in msgio32()
469 msgdata.buf = (caddr_t)(uintptr_t)msgdata32.buf; in msgio32()
476 msgdata.maxlen = -1; in msgio32()
480 error = sock_getmsg(vp, &msgctl, &msgdata, prip, in msgio32()
483 error = strgetmsg(vp, &msgctl, &msgdata, prip, in msgio32()
505 msgdata32.len = msgdata.len; in msgio32()
506 msgdata32.maxlen = msgdata.maxlen; in msgio32()
507 msgdata32.buf = (caddr32_t)(uintptr_t)msgdata.buf; in msgio32()
523 msgdata.len = -1; in msgio32()
526 error = sock_putmsg(vp, &msgctl, &msgdata, *prip, *flagsp, in msgio32()
529 error = strputmsg(vp, &msgctl, &msgdata, *prip, *flagsp, flag); in msgio32()