Home
last modified time | relevance | path

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

/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_process_lock.h170 InitializeCriticalSection(&(_inp)->inp_mtx)
172 DeleteCriticalSection(&(_inp)->inp_mtx)
177 EnterCriticalSection(&(_inp)->inp_mtx); \
182 EnterCriticalSection(&(_inp)->inp_mtx); \
186 EnterCriticalSection(&(_inp)->inp_mtx)
188 EnterCriticalSection(&(_inp)->inp_mtx)
221 LeaveCriticalSection(&(_inp)->inp_mtx)
223 LeaveCriticalSection(&(_inp)->inp_mtx)
338 (void)pthread_mutex_init(&(_inp)->inp_mtx, &SCTP_BASE_VAR(mtx_attr))
340 (void)pthread_mutex_destroy(&(_inp)->inp_mtx)
[all …]
Dsctp_pcb.h515 struct mtx inp_mtx; member
520 userland_mutex_t inp_mtx; member
526 lck_rw_t *inp_mtx; member
528 lck_mtx_t *inp_mtx; member
Dsctputil.c393 sctp_clog.x.lock.inp_lock = mtx_owned(&inp->inp_mtx); in sctp_log_lock()
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/
Duser_inpcb.h169 struct mtx inp_mtx; member
253 mtx_init(&(inp)->inp_mtx, (d), (t), MTX_DEF | MTX_RECURSE | MTX_DUPOK)
254 #define INP_LOCK_DESTROY(inp) mtx_destroy(&(inp)->inp_mtx)
255 #define INP_LOCK(inp) mtx_lock(&(inp)->inp_mtx)
256 #define INP_UNLOCK(inp) mtx_unlock(&(inp)->inp_mtx)
257 #define INP_LOCK_ASSERT(inp) mtx_assert(&(inp)->inp_mtx, MA_OWNED)
258 #define INP_UNLOCK_ASSERT(inp) mtx_assert(&(inp)->inp_mtx, MA_NOTOWNED)