Searched refs:M_NG_CCATM (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/sys/netgraph/atm/ccatm/
H A Dng_ccatm_cust.h50 MALLOC_DECLARE(M_NG_CCATM); variable
52 #define CCMALLOC(S) (malloc((S), M_NG_CCATM, M_NOWAIT))
53 #define CCZALLOC(S) (malloc((S), M_NG_CCATM, M_NOWAIT | M_ZERO))
54 #define CCFREE(P) do { free((P), M_NG_CCATM); } while (0)
H A Dng_ccatm.c67 MALLOC_DEFINE(M_NG_CCATM, "ng_ccatm", "netgraph uni api node");
351 priv = malloc(sizeof(*priv), M_NG_CCATM, M_WAITOK | M_ZERO);
356 free(priv, M_NG_CCATM);
378 free(priv, M_NG_CCATM);
409 free(addrs, M_NG_CCATM);
410 free(ports, M_NG_CCATM);
421 free(addrs, M_NG_CCATM);
422 free(ports, M_NG_CCATM);
664 free(ports, M_NG_CCATM);
673 free(ports, M_NG_CCATM);
[all...]

Completed in 53 milliseconds