Searched refs:maxchunks (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dkpi_mbuf.c1056 mbuf_allocpacket(mbuf_how_t how, size_t packetlen, unsigned int *maxchunks, mbuf_t *mbuf) argument
1061 unsigned int numchunks = maxchunks ? *maxchunks : 0;
1067 m = m_allocpacket_internal(&numpkts, packetlen, maxchunks ? &numchunks : NULL, how, 1, 0);
1069 if (maxchunks && *maxchunks && numchunks > *maxchunks)
1074 if (maxchunks)
1075 *maxchunks = numchunks;
1084 mbuf_allocpacket_list(unsigned int numpkts, mbuf_how_t how, size_t packetlen, unsigned int *maxchunks, mbuf_ argument
[all...]
H A Duipc_syscalls.c2291 alloc_sendpkt(int how, size_t pktlen, unsigned int *maxchunks, argument
2327 *maxchunks = needed;
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dkpi_mbuf.h507 @param maxchunks An input/output pointer to the maximum number of mbufs
508 segments making up the chain. On input, if maxchunks is NULL,
509 or the value pointed to by maxchunks is zero, the packet will
515 maxchunks is non-NULL, it will point to the actual number
518 the caller may pass a non-NULL maxchunks and initialize it
522 pointed to by maxchunks. E.g. a request for 9018 bytes may
533 unsigned int * maxchunks, mbuf_t *mbuf);
546 @param maxchunks An input/output pointer to the maximum number of
547 mbufs segments making up the chain. On input, if maxchunks is
548 zero, or the value pointed to by maxchunks i
[all...]

Completed in 231 milliseconds