Lines Matching refs:reqbuf
291 char reqbuf[128]; in nfslib_bindit() local
422 opt = (struct opthdr *)reqbuf; in nfslib_bindit()
434 resp.opt.buf = reqbuf; in nfslib_bindit()
435 resp.opt.maxlen = sizeof (reqbuf); in nfslib_bindit()
457 } reqbuf; in get_opt() local
459 reqbuf.opt.level = level; in get_opt()
460 reqbuf.opt.name = name; in get_opt()
461 reqbuf.opt.len = sizeof (int); in get_opt()
462 reqbuf.value = 0; in get_opt()
465 req.opt.len = sizeof (reqbuf); in get_opt()
466 req.opt.buf = (char *)&reqbuf; in get_opt()
469 res.opt.buf = (char *)&reqbuf; in get_opt()
470 res.opt.maxlen = sizeof (reqbuf); in get_opt()
476 return (reqbuf.value); in get_opt()
486 } reqbuf; in setopt() local
488 reqbuf.opt.level = level; in setopt()
489 reqbuf.opt.name = name; in setopt()
490 reqbuf.opt.len = sizeof (int); in setopt()
492 reqbuf.value = value; in setopt()
495 req.opt.len = sizeof (reqbuf); in setopt()
496 req.opt.buf = (char *)&reqbuf; in setopt()
499 resp.opt.buf = (char *)&reqbuf; in setopt()
500 resp.opt.maxlen = sizeof (reqbuf); in setopt()