Lines Matching full:how

640 mb_ctor_mbuf(void *mem, int size, void *arg, int how)
662 error = m_init(m, how, type, flags);
729 mb_ctor_clust(void *mem, int size, void *arg, int how)
755 mb_zinit_pack(void *mem, int size, int how)
760 if (uma_zalloc_arg(zone_clust, m, how) == NULL ||
765 trash_init(m->m_ext.ext_buf, MCLBYTES, how);
793 mb_ctor_pack(void *mem, int size, void *arg, int how)
807 trash_ctor(m->m_ext.ext_buf, MCLBYTES, zone_clust, how);
810 error = m_init(m, how, type, flags);
1136 mb_alloc_ext_pgs(int how, m_ext_free_t ext_free, int flags)
1140 m = m_get(how, MT_DATA);
1315 m_clget(struct mbuf *m, int how)
1321 uma_zalloc_arg(zone_clust, m, how);
1326 if ((how & M_NOWAIT) && (m->m_ext.ext_buf == NULL)) {
1328 uma_zalloc_arg(zone_clust, m, how);
1330 MBUF_PROBE2(m__clget, m, how);
1342 m_cljget(struct mbuf *m, int how, int size)
1354 retval = uma_zalloc_arg(zone, m, how);
1356 MBUF_PROBE4(m__cljget, m, how, size, retval);
1365 m_get2(int size, int how, short type, int flags)
1374 return (uma_zalloc_arg(zone_mbuf, &args, how));
1376 return (uma_zalloc_arg(zone_pack, &args, how));
1381 m = uma_zalloc_arg(zone_mbuf, &args, how);
1385 n = uma_zalloc_arg(zone_jumbop, m, how);
1399 m_get3(int size, int how, short type, int flags)
1406 return (m_get2(size, how, type, flags));
1414 m = uma_zalloc_arg(zone_mbuf, &args, how);
1423 n = uma_zalloc_arg(zone, m, how);
1437 m_getjcl(int how, short type, int flags, int size)
1444 return m_getcl(how, type, flags);
1449 m = uma_zalloc_arg(zone_mbuf, &args, how);
1454 n = uma_zalloc_arg(zone, m, how);
1459 MBUF_PROBE5(m__getjcl, how, type, flags, size, m);
1469 mc_get(struct mchain *mc, u_int length, int how, short type, int flags)
1494 mb = m_getcl(how, type, (flags & M_PKTHDR));
1496 mb = m_gethdr(how, type);
1498 mb = m_get(how, type);
1529 m_getm2(struct mbuf *m, int len, int how, short type, int flags)
1537 if (__predict_false(mc_get(&mc, len, how, type, flags) != 0))
1720 mb_alloc_ext_plus_pages(int len, int how)
1726 m = mb_alloc_ext_pgs(how, mb_free_mext_pgs, 0);
1736 if (how == M_NOWAIT) {
1757 mb_mapped_to_unmapped(struct mbuf *mp, int len, int mlen, int how,
1767 m = mout = mb_alloc_ext_plus_pages(mbufsiz, how);
1780 how);