Home
last modified time | relevance | path

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

/xnu-10063.101.15/bsd/skywalk/packet/
H A Dpacket_copy.c1414 uint32_t remaining_len = len, copied_len = 0; in pkt_copy_to_mbuf() local
1446 remaining_len -= start; in pkt_copy_to_mbuf()
1452 while (curr_m != NULL && remaining_len != 0) { in pkt_copy_to_mbuf()
1453 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_to_mbuf()
1466 remaining_len -= tmp_len; in pkt_copy_to_mbuf()
1469 ASSERT(remaining_len == 0); in pkt_copy_to_mbuf()
1632 uint32_t remaining_len = len, copied_len = 0; in pkt_copy_multi_buflet_to_mbuf() local
1659 remaining_len -= start; in pkt_copy_multi_buflet_to_mbuf()
1665 while (curr_m != NULL && remaining_len != 0) { in pkt_copy_multi_buflet_to_mbuf()
1666 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_multi_buflet_to_mbuf()
[all …]
/xnu-10063.101.15/tools/lldbmacros/
H A Dmbufs.py224 remaining_len = dump_data_len
233 ShowMbuf(prefix, mp, count, total, remaining_len)
234 if (remaining_len > mhlen):
235 remaining_len -= mhlen
237 remaining_len = 0
/xnu-10063.101.15/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()