Home
last modified time | relevance | path

Searched refs:M_PCB (Results 1 – 21 of 21) sorted by relevance

/original-bsd/sys/netccitt/
H A Dpk_llcsubr.c281 nprt->rt_llinfo = malloc(size , M_PCB, M_WAITOK); in npaidb_enter()
317 free((caddr_t) rt->rt_llinfo, M_PCB); in npaidb_destroy()
H A Dhd_subr.c64 MALLOC(hdp, struct hdcb *, sizeof (*hdp), M_PCB, M_DONTWAIT);
74 free(hdp, M_PCB);
91 free(hdp, M_PCB);
H A Dif_x25subr.c84 MALLOC(lx, struct llinfo_x25 *, sizeof (*lx), M_PCB, M_NOWAIT);
119 FREE(lx, M_PCB);
H A Dllc_subr.c216 sirt->rt_llinfo = malloc(size , M_PCB, M_WAITOK); in llc_setsapinfo()
2085 M_PCB, M_DONTWAIT); in llc_newlink()
2120 llcwindow*sizeof(struct mbuf *), M_PCB, M_DONTWAIT); in llc_newlink()
2122 FREE(nlinkp, M_PCB); in llc_newlink()
2174 FREE((caddr_t)linkp->llcl_output_buffers, M_PCB); in llc_dellink()
2177 FREE((caddr_t)linkp, M_PCB); in llc_dellink()
H A Dpk_subr.c71 MALLOC(lcp, struct pklcd *, sizeof (*lcp), M_PCB, M_NOWAIT);
277 free ((caddr_t)lcp, M_PCB);
H A Dpk_input.c83 pkp = (struct pkcb *) malloc (size, M_PCB, M_WAITOK);
166 free ((caddr_t) pkp, M_PCB);
/original-bsd/sys/net/
H A Draw_cb.c82 free((caddr_t)(rp), M_PCB);
H A Drtsock.c60 MALLOC(rp, struct rawcb *, sizeof(*rp), M_PCB, M_WAITOK);
81 free((caddr_t)rp, M_PCB);
/original-bsd/sys/netiso/
H A Dclnp_raw.c259 MALLOC(rp, struct rawisopcb *, sizeof *rp, M_PCB, M_WAITOK);
324 free((caddr_t)rp, M_PCB);
H A Dtp_timer.c84 if ((tp_ref = (struct tp_ref *) malloc(s, M_PCB, M_NOWAIT)) == 0) in tp_timerinit()
195 free((caddr_t)tpcb, M_PCB); in tp_slowtimo()
H A Dtp_pcb.c545 r = (struct tp_ref *) malloc(size + size, M_PCB, M_NOWAIT);
551 free(obase, M_PCB);
646 MALLOC(tpcb, struct tp_pcb *, sizeof(*tpcb), M_PCB, M_NOWAIT);
715 free((caddr_t)tpcb, M_PCB); /* never a cluster */
H A Diso_pcb.c93 MALLOC(isop, struct isopcb *, sizeof(*isop), M_PCB, M_NOWAIT);
487 free((caddr_t)isop, M_PCB);
H A Dtp_subr.c868 free((caddr_t)tpcb->tp_rsyq, M_PCB);
888 if (rsyq = (caddr_t)malloc(maxcredit, M_PCB, M_NOWAIT))
H A Dtp_usrreq.c410 free((caddr_t)tpcb, M_PCB);
H A Dtp_subr2.c624 free(isop_new, M_PCB);
H A Desis.c162 MALLOC(rp, struct rawcb *, sizeof(*rp), M_PCB, M_WAITOK);
/original-bsd/sys/netinet/
H A Dtcp_subr.c186 tp = malloc(sizeof(*tp), M_PCB, M_NOWAIT);
331 free(tp, M_PCB);
H A Din_pcb.c41 MALLOC(inp, struct inpcb *, sizeof(*inp), M_PCB, M_NOWAIT);
276 FREE(inp, M_PCB);
/original-bsd/sys/sys/
H A Dmalloc.h28 #define M_PCB 4 /* protocol control block */ macro
H A Dmbuf.h361 M_PCB, /* MT_PCB 4 protocol control block */
/original-bsd/sys/netns/
H A Dns_ip.c72 MALLOC((m), struct ifnet_en *, sizeof(*m), M_PCB, M_NOWAIT); in nsipattach()