Home
last modified time | relevance | path

Searched refs:_stcb (Results 1 – 2 of 2) sorted by path

/freebsd/sys/netinet/
H A Dsctp_constants.h464 #define SCTP_GET_STATE(_stcb) \ argument
465 ((_stcb)->asoc.state & SCTP_STATE_MASK)
466 #define SCTP_SET_STATE(_stcb, _state) \ argument
467 sctp_set_state(_stcb, _state)
468 #define SCTP_CLEAR_SUBSTATE(_stcb, _substate) \ argument
469 (_stcb)->asoc.state &= ~(_substate)
470 #define SCTP_ADD_SUBSTATE(_stcb, _substate) \ argument
471 sctp_add_substate(_stcb, _substate)
H A Dsctp_var.h99 #define sctp_free_a_readq(_stcb, _readq) { \ argument
106 #define sctp_free_a_readq(_stcb, _readq) { \ argument
112 #define sctp_alloc_a_readq(_stcb, _readq) { \ argument
128 #define sctp_alloc_a_strmoq(_stcb, _strmoq) { \ argument
142 if (_stcb) { \
143 SCTP_TCB_LOCK_ASSERT((_stcb)); \
154 (_stcb)->asoc.free_chunk_cnt++; \
163 #define sctp_alloc_a_chunk(_stcb, _chk) { \ argument
164 if (TAILQ_EMPTY(&(_stcb)->asoc.free_chunks)) { \
172 (_chk) = TAILQ_FIRST(&(_stcb)->asoc.free_chunks); \
[all …]