Lines Matching defs:mtx
205 msleep(const volatile void *ident, struct mutex *mtx, int priority,
215 KASSERT(mtx != NULL);
228 spl = MUTEX_OLDIPL(mtx);
229 MUTEX_OLDIPL(mtx) = safepri;
230 mtx_leave(mtx);
238 mtx_enter(mtx);
239 MUTEX_OLDIPL(mtx) = spl;
247 mtx_leave(mtx);
252 mtx_enter(mtx);
258 msleep_nsec(const volatile void *ident, struct mutex *mtx, int priority,
264 return msleep(ident, mtx, priority, wmesg, 0);
277 return msleep(ident, mtx, priority, wmesg, (int)to_ticks);