Searched refs:m_notify (Results 1 – 4 of 4) sorted by relevance
/freebsd/sys/netinet/ |
H A D | sctputil.c | 3140 struct mbuf *m_notify; in sctp_notify_assoc_change() local 3176 m_notify = sctp_get_mbuf_for_msg(notif_len, 0, M_NOWAIT, 1, MT_DATA); in sctp_notify_assoc_change() 3177 if (m_notify == NULL) { in sctp_notify_assoc_change() 3180 m_notify = sctp_get_mbuf_for_msg(notif_len, 0, M_NOWAIT, 1, MT_DATA); in sctp_notify_assoc_change() 3181 if (m_notify == NULL) { in sctp_notify_assoc_change() 3185 SCTP_BUF_NEXT(m_notify) = NULL; in sctp_notify_assoc_change() 3186 sac = mtod(m_notify, struct sctp_assoc_change *); in sctp_notify_assoc_change() 3226 SCTP_BUF_LEN(m_notify) = sac->sac_length; in sctp_notify_assoc_change() 3229 m_notify); in sctp_notify_assoc_change() 3231 control->length = SCTP_BUF_LEN(m_notify); in sctp_notify_assoc_change() [all …]
|
H A D | sctp_auth.c | 1705 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/contrib/llvm-project/lldb/source/Target/ |
H A D | UnixSignals.cpp | 26 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 SetShouldStop() 307 pos->second.m_notify = value; in GetShouldNotify() 385 m_notify = m_default_notify; in GetHitCountStatistics()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | UnixSignals.h | 158 bool m_suppress : 1, m_stop : 1, m_notify : 1; 138 bool m_suppress : 1, m_stop : 1, m_notify : 1; global() member
|