Home
last modified time | relevance | path

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

/xnu-11417.121.6/bsd/skywalk/packet/
H A Dpacket_copy.c1450 uint32_t remaining_len = len, copied_len = 0; in pkt_copy_to_mbuf() local
1482 remaining_len -= start; in pkt_copy_to_mbuf()
1488 while (curr_m != NULL && remaining_len != 0) { in pkt_copy_to_mbuf()
1489 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_to_mbuf()
1502 remaining_len -= tmp_len; in pkt_copy_to_mbuf()
1505 ASSERT(remaining_len == 0); in pkt_copy_to_mbuf()
1670 uint32_t remaining_len = len, copied_len = 0; in pkt_copy_multi_buflet_to_mbuf() local
1695 remaining_len -= start; in pkt_copy_multi_buflet_to_mbuf()
1701 while (curr_m != NULL && remaining_len != 0) { in pkt_copy_multi_buflet_to_mbuf()
1702 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_multi_buflet_to_mbuf()
[all …]
/xnu-11417.121.6/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-11417.121.6/bsd/netinet/
H A Dflow_divert.c1698 size_t remaining_len = datagram_len; in flow_divert_send_fragmented_datagram() local
1703 while (remaining_len > 0 && next_data != NULL) { in flow_divert_send_fragmented_datagram()
1704 size_t to_send = remaining_len; in flow_divert_send_fragmented_datagram()
1721 remaining_len -= to_send; in flow_divert_send_fragmented_datagram()