Home
last modified time | relevance | path

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

/freebsd-12.1/sys/netinet/
H A Dsctp_auth.c995 struct mbuf *m_tmp; in sctp_hmac_m() local
1033 m_tmp = m; in sctp_hmac_m()
1034 while ((m_tmp != NULL) && (m_offset >= (uint32_t)SCTP_BUF_LEN(m_tmp))) { in sctp_hmac_m()
1036 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_hmac_m()
1039 while (m_tmp != NULL) { in sctp_hmac_m()
1050 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_hmac_m()
1566 struct mbuf *m_tmp; in sctp_zero_m() local
1574 m_tmp = m; in sctp_zero_m()
1575 while ((m_tmp != NULL) && (m_offset >= (uint32_t)SCTP_BUF_LEN(m_tmp))) { in sctp_zero_m()
1577 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_zero_m()
[all …]
H A Dsctp_output.c5220 if (m_tmp == NULL) { in sctp_arethere_unrecognized_parameters()
5226 SCTP_BUF_LEN(m_tmp) = 0; in sctp_arethere_unrecognized_parameters()
5227 SCTP_BUF_NEXT(m_tmp) = NULL; in sctp_arethere_unrecognized_parameters()
5229 op_err_last = m_tmp; in sctp_arethere_unrecognized_parameters()
6093 for (m_tmp = op_err; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { in sctp_send_initiate_ack()
6123 for (m_tmp = m_cookie; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { in sctp_send_initiate_ack()
6124 parameter_len += SCTP_BUF_LEN(m_tmp); in sctp_send_initiate_ack()
6125 if (SCTP_BUF_NEXT(m_tmp) == NULL) { in sctp_send_initiate_ack()
6126 m_last = m_tmp; in sctp_send_initiate_ack()
7521 struct mbuf *m_tmp; in sctp_move_to_outqueue() local
[all …]
H A Dsctputil.c5418 struct mbuf *m_tmp; in sctp_sorecvmsg() local
5421 m_tmp = control->data; in sctp_sorecvmsg()
5422 while (m_tmp) { in sctp_sorecvmsg()
5423 cnt += SCTP_BUF_LEN(m_tmp); in sctp_sorecvmsg()
5424 if (SCTP_BUF_NEXT(m_tmp) == NULL) { in sctp_sorecvmsg()
5425 control->tail_mbuf = m_tmp; in sctp_sorecvmsg()
5428 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_sorecvmsg()
/freebsd-12.1/sys/vm/
H A Dvm_phys.c1197 vm_page_t m_tmp; in vm_phys_set_pool() local
1199 for (m_tmp = m; m_tmp < &m[1 << order]; m_tmp++) in vm_phys_set_pool()
1200 m_tmp->pool = pool; in vm_phys_set_pool()
1216 vm_page_t m_set, m_tmp; in vm_phys_unfree_page() local
1256 m_tmp = &seg->first_page[atop(pa_half - seg->start)]; in vm_phys_unfree_page()
1258 m_tmp = m_set; in vm_phys_unfree_page()
1261 vm_freelist_add(fl, m_tmp, order, 0); in vm_phys_unfree_page()
/freebsd-12.1/contrib/sendmail/src/
H A Dmap.c3914 char m_tmp[MAXPATHLEN + LDAPMAP_MAX_PASSWD]; local
4444 lmap->ldap_secret = sfgets(m_tmp, sizeof(m_tmp),
4448 if (strlen(m_tmp) > LDAPMAP_MAX_PASSWD)
4455 strlen(m_tmp) > 0)
4458 if (m_tmp[strlen(m_tmp) - 1] == '\n')
4459 m_tmp[strlen(m_tmp) - 1] = '\0';
4461 lmap->ldap_secret = m_tmp;
4473 (void) sm_snprintf(m_tmp, sizeof(m_tmp),
4476 lmap->ldap_secret = m_tmp;
/freebsd-12.1/sys/dev/mxge/
H A Dif_mxge.c2082 struct mbuf *m_tmp; in mxge_encap() local
2115 m_tmp = m_defrag(m, M_NOWAIT); in mxge_encap()
2116 if (m_tmp == NULL) { in mxge_encap()
2120 m = m_tmp; in mxge_encap()