Home
last modified time | relevance | path

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

/xnu-8796.121.2/bsd/skywalk/packet/
H A Dpacket_copy.c1334 uint32_t remaining_len = len, copied_len = 0; in pkt_copy_to_mbuf() local
1366 remaining_len -= start; in pkt_copy_to_mbuf()
1372 while (curr_m != NULL && remaining_len != 0) { in pkt_copy_to_mbuf()
1373 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_to_mbuf()
1386 remaining_len -= tmp_len; in pkt_copy_to_mbuf()
1389 ASSERT(remaining_len == 0); in pkt_copy_to_mbuf()
1539 uint32_t remaining_len = len, copied_len = 0; in pkt_copy_multi_buflet_to_mbuf() local
1566 remaining_len -= start; in pkt_copy_multi_buflet_to_mbuf()
1572 while (curr_m != NULL && remaining_len != 0) { in pkt_copy_multi_buflet_to_mbuf()
1573 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_multi_buflet_to_mbuf()
[all …]
/xnu-8796.121.2/tools/lldbmacros/
H A Dmbufs.py133 remaining_len = dump_data_len
136 ShowMbuf(prefix, mp, count, total, remaining_len)
137 if (remaining_len > mp.m_hdr.mh_len):
138 remaining_len -= mp.m_hdr.mh_len
140 remaining_len = 0
/xnu-8796.121.2/bsd/netinet/
H A Dflow_divert.c1654 size_t remaining_len = datagram_len; in flow_divert_send_fragmented_datagram() local
1659 while (remaining_len > 0 && next_data != NULL) { in flow_divert_send_fragmented_datagram()
1660 size_t to_send = remaining_len; in flow_divert_send_fragmented_datagram()
1677 remaining_len -= to_send; in flow_divert_send_fragmented_datagram()