Symbol: LC_SLEEPLOCK
sys/kern/kern_lock.c
159
.lc_flags = LC_RECURSABLE | LC_SLEEPABLE | LC_SLEEPLOCK | LC_UPGRADABLE,
sys/kern/kern_mutex.c
117
.lc_flags = LC_SLEEPLOCK | LC_RECURSABLE,
sys/kern/kern_rmlock.c
102
.lc_flags = LC_SLEEPLOCK | LC_SLEEPABLE | LC_RECURSABLE,
sys/kern/kern_rmlock.c
88
.lc_flags = LC_SLEEPLOCK | LC_RECURSABLE,
sys/kern/kern_rwlock.c
83
.lc_flags = LC_SLEEPLOCK | LC_RECURSABLE | LC_UPGRADABLE,
sys/kern/kern_sx.c
126
.lc_flags = LC_SLEEPLOCK | LC_SLEEPABLE | LC_RECURSABLE | LC_UPGRADABLE,
sys/kern/subr_witness.c
1458
if (class->lc_flags & LC_SLEEPLOCK) {
sys/kern/subr_witness.c
1885
if (LOCK_CLASS(lock)->lc_flags & LC_SLEEPLOCK)
sys/kern/subr_witness.c
1944
if ((class->lc_flags & LC_SLEEPLOCK) == 0)
sys/kern/subr_witness.c
1990
if ((class->lc_flags & LC_SLEEPLOCK) == 0)
sys/kern/subr_witness.c
2035
if (class->lc_flags & LC_SLEEPLOCK)
sys/kern/subr_witness.c
2276
} else if ((lock_class->lc_flags & LC_SLEEPLOCK) == 0) {
sys/kern/subr_witness.c
2296
} else if (lock_class->lc_flags & LC_SLEEPLOCK) {
sys/kern/subr_witness.c
2323
if (w->w_class->lc_flags & LC_SLEEPLOCK) {
sys/kern/subr_witness.c
2744
if (class->lc_flags & LC_SLEEPLOCK)
sys/kern/subr_witness.c
2779
if (class->lc_flags & LC_SLEEPLOCK)
sys/kern/subr_witness.c
2808
if ((class->lc_flags & LC_SLEEPLOCK) != 0) {
sys/kern/subr_witness.c
2918
if (class->lc_flags & LC_SLEEPLOCK)
sys/kern/subr_witness.c
294
return ((w1->w_class->lc_flags & (LC_SLEEPLOCK | LC_SPINLOCK)) ==
sys/kern/subr_witness.c
295
(w2->w_class->lc_flags & (LC_SLEEPLOCK | LC_SPINLOCK)));