Lines Matching refs:M_NETGRAPH_MPPC
78 static MALLOC_DEFINE(M_NETGRAPH_MPPC, "netgraph_mppc", "netgraph mppc node");
80 #define M_NETGRAPH_MPPC M_NETGRAPH macro
219 priv = malloc(sizeof(*priv), M_NETGRAPH_MPPC, M_WAITOK | M_ZERO); in ng_mppc_constructor()
308 free(d->history, M_NETGRAPH_MPPC); in ng_mppc_rcvmsg()
315 M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_rcvmsg()
435 free(priv->xmit.history, M_NETGRAPH_MPPC); in ng_mppc_shutdown()
437 free(priv->recv.history, M_NETGRAPH_MPPC); in ng_mppc_shutdown()
440 free(priv, M_NETGRAPH_MPPC); in ng_mppc_shutdown()
514 inbuf = malloc(inlen, M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_compress()
522 outbuf = malloc(outlen, M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_compress()
525 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_compress()
566 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_compress()
567 free(outbuf, M_NETGRAPH_MPPC); in ng_mppc_compress()
774 inbuf = malloc(inlen, M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_decompress()
785 M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_decompress()
789 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()
813 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()
814 free(outbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()
820 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()
829 free(outbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()