Lines Matching refs:M_NETGRAPH_MPPC
77 static MALLOC_DEFINE(M_NETGRAPH_MPPC, "netgraph_mppc", "netgraph mppc node");
79 #define M_NETGRAPH_MPPC M_NETGRAPH macro
218 priv = malloc(sizeof(*priv), M_NETGRAPH_MPPC, M_WAITOK | M_ZERO); in ng_mppc_constructor()
307 free(d->history, M_NETGRAPH_MPPC); in ng_mppc_rcvmsg()
314 M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_rcvmsg()
434 free(priv->xmit.history, M_NETGRAPH_MPPC); in ng_mppc_shutdown()
436 free(priv->recv.history, M_NETGRAPH_MPPC); in ng_mppc_shutdown()
439 free(priv, M_NETGRAPH_MPPC); in ng_mppc_shutdown()
513 inbuf = malloc(inlen, M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_compress()
521 outbuf = malloc(outlen, M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_compress()
524 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_compress()
565 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_compress()
566 free(outbuf, M_NETGRAPH_MPPC); in ng_mppc_compress()
773 inbuf = malloc(inlen, M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_decompress()
784 M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_decompress()
788 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()
812 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()
813 free(outbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()
819 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()
828 free(outbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()