Searched refs:_stcb (Results 1 – 2 of 2) sorted by relevance
/external/usrsctp/usrsctplib/netinet/ |
D | sctp_var.h | 107 #define sctp_free_a_readq(_stcb, _readq) { \ argument 109 panic("On strm q stcb:%p readq:%p", (_stcb), (_readq)); \ 114 #define sctp_free_a_readq(_stcb, _readq) { \ argument 120 #define sctp_alloc_a_readq(_stcb, _readq) { \ argument 127 #define sctp_free_a_strmoq(_stcb, _strmoq, _so_locked) { \ argument 136 #define sctp_alloc_a_strmoq(_stcb, _strmoq) { \ argument 145 #define sctp_free_a_chunk(_stcb, _chk, _so_locked) { \ argument 147 sctp_auth_key_release((_stcb), (_chk)->auth_keyid, _so_locked); \ 150 if (_stcb) { \ 151 SCTP_TCB_LOCK_ASSERT((_stcb)); \ [all …]
|
D | sctp_constants.h | 481 #define SCTP_GET_STATE(_stcb) \ argument 482 ((_stcb)->asoc.state & SCTP_STATE_MASK) 483 #define SCTP_SET_STATE(_stcb, _state) \ argument 484 sctp_set_state(_stcb, _state) 485 #define SCTP_CLEAR_SUBSTATE(_stcb, _substate) \ argument 486 (_stcb)->asoc.state &= ~(_substate) 487 #define SCTP_ADD_SUBSTATE(_stcb, _substate) \ argument 488 sctp_add_substate(_stcb, _substate)
|