Home
last modified time | relevance | path

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

/xnu-11215.81.4/bsd/skywalk/packet/
H A Dpacket_copy.c1444 uint32_t remaining_len = len, copied_len = 0; in pkt_copy_to_mbuf() local
1476 remaining_len -= start; in pkt_copy_to_mbuf()
1482 while (curr_m != NULL && remaining_len != 0) { in pkt_copy_to_mbuf()
1483 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_to_mbuf()
1496 remaining_len -= tmp_len; in pkt_copy_to_mbuf()
1499 ASSERT(remaining_len == 0); in pkt_copy_to_mbuf()
1662 uint32_t remaining_len = len, copied_len = 0; in pkt_copy_multi_buflet_to_mbuf() local
1689 remaining_len -= start; in pkt_copy_multi_buflet_to_mbuf()
1695 while (curr_m != NULL && remaining_len != 0) { in pkt_copy_multi_buflet_to_mbuf()
1696 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_multi_buflet_to_mbuf()
[all …]
/xnu-11215.81.4/tools/lldbmacros/
H A Dmbufs.py233 remaining_len = dump_data_len
242 ShowMbuf(prefix, mp, count, total, remaining_len)
243 if (remaining_len > mhlen):
244 remaining_len -= mhlen
246 remaining_len = 0
/xnu-11215.81.4/bsd/netinet/
H A Dflow_divert.c1691 size_t remaining_len = datagram_len; in flow_divert_send_fragmented_datagram() local
1696 while (remaining_len > 0 && next_data != NULL) { in flow_divert_send_fragmented_datagram()
1697 size_t to_send = remaining_len; in flow_divert_send_fragmented_datagram()
1714 remaining_len -= to_send; in flow_divert_send_fragmented_datagram()