Lines Matching refs:history
146 u_char *history; /* compression history */ member
306 if (d->history != NULL) { in ng_mppc_rcvmsg()
307 free(d->history, M_NETGRAPH_MPPC); in ng_mppc_rcvmsg()
308 d->history = NULL; in ng_mppc_rcvmsg()
311 d->history = malloc(isComp ? in ng_mppc_rcvmsg()
315 if (d->history == NULL) in ng_mppc_rcvmsg()
318 MPPC_InitCompressionHistory(d->history); in ng_mppc_rcvmsg()
321 d->history); in ng_mppc_rcvmsg()
433 if (priv->xmit.history != NULL) in ng_mppc_shutdown()
434 free(priv->xmit.history, M_NETGRAPH_MPPC); in ng_mppc_shutdown()
435 if (priv->recv.history != NULL) in ng_mppc_shutdown()
436 free(priv->recv.history, M_NETGRAPH_MPPC); in ng_mppc_shutdown()
527 MPPC_InitCompressionHistory(d->history); in ng_mppc_compress()
542 &destCnt, d->history, flags, 0); in ng_mppc_compress()
571 MPPC_InitCompressionHistory(d->history); in ng_mppc_compress()
653 if (d->history != NULL) in ng_mppc_decompress()
654 MPPC_InitDecompressionHistory(d->history); in ng_mppc_decompress()
803 &sourceCnt, &destCnt, d->history, flags); in ng_mppc_decompress()
847 if (d->history != NULL) in ng_mppc_reset_req()
848 MPPC_InitCompressionHistory(d->history); in ng_mppc_reset_req()