Home
last modified time | relevance | path

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

/freebsd/sys/netinet/
H A Dtcp_pcap.c161 struct mbuf *m_cur = m; in tcp_pcap_copy_bestfit() local
186 m_cur = m; in tcp_pcap_copy_bestfit()
208 while (m_cur) { in tcp_pcap_copy_bestfit()
209 if ((caddr_t) th >= (caddr_t) m_cur->m_data && in tcp_pcap_copy_bestfit()
210 (caddr_t) th < (caddr_t) (m_cur->m_data + m_cur->m_len)) in tcp_pcap_copy_bestfit()
212 bytes_to_copy += m_cur->m_len; in tcp_pcap_copy_bestfit()
213 m_cur = m_cur->m_next; in tcp_pcap_copy_bestfit()
215 if (m_cur) in tcp_pcap_copy_bestfit()
216 bytes_to_copy += (caddr_t) th - (caddr_t) m_cur->m_data; in tcp_pcap_copy_bestfit()
246 trailing_data = m_cur->m_len - tcp_off; in tcp_pcap_copy_bestfit()
[all …]