Lines Matching refs:outbuf
1393 char *buf, *outbuf; in bridge_ioctl_gifs() local
1407 outbuf = malloc(buflen, M_TEMP, M_NOWAIT | M_ZERO); in bridge_ioctl_gifs()
1408 if (outbuf == NULL) in bridge_ioctl_gifs()
1412 buf = outbuf; in bridge_ioctl_gifs()
1445 error = copyout(outbuf, bifc->ifbic_req, bifc->ifbic_len); in bridge_ioctl_gifs()
1446 free(outbuf, M_TEMP); in bridge_ioctl_gifs()
1456 char *buf, *outbuf; in bridge_ioctl_rts() local
1467 outbuf = malloc(buflen, M_TEMP, M_NOWAIT | M_ZERO); in bridge_ioctl_rts()
1468 if (outbuf == NULL) in bridge_ioctl_rts()
1472 buf = outbuf; in bridge_ioctl_rts()
1496 error = copyout(outbuf, bac->ifbac_req, bac->ifbac_len); in bridge_ioctl_rts()
1497 free(outbuf, M_TEMP); in bridge_ioctl_rts()
1782 char *buf, *outbuf; in bridge_ioctl_gifsstp() local
1797 outbuf = malloc(buflen, M_TEMP, M_NOWAIT | M_ZERO); in bridge_ioctl_gifsstp()
1798 if (outbuf == NULL) in bridge_ioctl_gifsstp()
1802 buf = outbuf; in bridge_ioctl_gifsstp()
1827 error = copyout(outbuf, bifstp->ifbpstp_req, bifstp->ifbpstp_len); in bridge_ioctl_gifsstp()
1828 free(outbuf, M_TEMP); in bridge_ioctl_gifsstp()