Home
last modified time | relevance | path

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

/freebsd-14.2/sys/netinet/
H A Dsctputil.c3355 m_notify); in sctp_notify_peer_addr_change()
3487 m_notify); in sctp_notify_send_failed()
3587 m_notify); in sctp_notify_send_failed2()
3637 m_notify); in sctp_notify_adaptation_layer()
3691 m_notify); in sctp_notify_partial_delivery_indication()
3760 m_notify); in sctp_notify_shutdown_event()
3810 m_notify); in sctp_notify_sender_dry_event()
3870 m_notify); in sctp_notify_stream_reset_add()
3924 m_notify); in sctp_notify_stream_reset_tsn()
3991 m_notify); in sctp_notify_stream_reset()
[all …]
H A Dsctp_auth.c1705 struct mbuf *m_notify; in sctp_notify_authentication() local
1717 m_notify = sctp_get_mbuf_for_msg(sizeof(struct sctp_authkey_event), in sctp_notify_authentication()
1719 if (m_notify == NULL) in sctp_notify_authentication()
1723 SCTP_BUF_LEN(m_notify) = 0; in sctp_notify_authentication()
1724 auth = mtod(m_notify, struct sctp_authkey_event *); in sctp_notify_authentication()
1739 SCTP_BUF_LEN(m_notify) = sizeof(*auth); in sctp_notify_authentication()
1740 SCTP_BUF_NEXT(m_notify) = NULL; in sctp_notify_authentication()
1744 0, 0, stcb->asoc.context, 0, 0, 0, m_notify); in sctp_notify_authentication()
1747 sctp_m_freem(m_notify); in sctp_notify_authentication()
1750 control->length = SCTP_BUF_LEN(m_notify); in sctp_notify_authentication()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DUnixSignals.cpp26 m_notify(default_notify), m_default_suppress(default_suppress), in Signal()
245 should_notify = signal.m_notify; in GetSignalInfo()
300 return pos->second.m_notify; in GetShouldNotify()
307 pos->second.m_notify = value; in SetShouldNotify()
385 m_notify = m_default_notify; in Reset()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DUnixSignals.h158 bool m_suppress : 1, m_stop : 1, m_notify : 1; member