Home
last modified time | relevance | path

Searched refs:remaining_len (Results 1 – 3 of 3) sorted by relevance

/xnu-12377.61.12/bsd/skywalk/packet/
H A Dpacket_copy.c1486 uint32_t remaining_len = len, copied_len = 0; in pkt_copy_to_mbuf() local
1519 remaining_len -= start; in pkt_copy_to_mbuf()
1525 while (curr_m != NULL && remaining_len != 0) { in pkt_copy_to_mbuf()
1526 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_to_mbuf()
1539 remaining_len -= tmp_len; in pkt_copy_to_mbuf()
1542 ASSERT(remaining_len == 0); in pkt_copy_to_mbuf()
1718 uint32_t remaining_len = len, copied_len = 0; in pkt_copy_multi_buflet_to_mbuf() local
1744 remaining_len -= start; in pkt_copy_multi_buflet_to_mbuf()
1750 while (curr_m != NULL && remaining_len != 0) { in pkt_copy_multi_buflet_to_mbuf()
1751 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_multi_buflet_to_mbuf()
[all …]
/xnu-12377.61.12/tools/lldbmacros/
H A Dmbufs.py232 remaining_len = dump_data_len
241 ShowMbuf(prefix, mp, count, total, remaining_len)
242 if (remaining_len > mhlen):
243 remaining_len -= mhlen
245 remaining_len = 0
/xnu-12377.61.12/bsd/netinet/
H A Dflow_divert.c1695 size_t remaining_len = datagram_len; in flow_divert_send_fragmented_datagram() local
1700 while (remaining_len > 0 && next_data != NULL) { in flow_divert_send_fragmented_datagram()
1701 size_t to_send = remaining_len; in flow_divert_send_fragmented_datagram()
1718 remaining_len -= to_send; in flow_divert_send_fragmented_datagram()