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
1372
if (class->lc_flags & LC_SLEEPLOCK) {
sys/kern/subr_witness.c
1798
if (LOCK_CLASS(lock)->lc_flags & LC_SLEEPLOCK)
sys/kern/subr_witness.c
1857
if ((class->lc_flags & LC_SLEEPLOCK) == 0)
sys/kern/subr_witness.c
1903
if ((class->lc_flags & LC_SLEEPLOCK) == 0)
sys/kern/subr_witness.c
1948
if (class->lc_flags & LC_SLEEPLOCK)
sys/kern/subr_witness.c
2189
} else if ((lock_class->lc_flags & LC_SLEEPLOCK) == 0) {
sys/kern/subr_witness.c
2209
} else if (lock_class->lc_flags & LC_SLEEPLOCK) {
sys/kern/subr_witness.c
2236
if (w->w_class->lc_flags & LC_SLEEPLOCK) {
sys/kern/subr_witness.c
2657
if (class->lc_flags & LC_SLEEPLOCK)
sys/kern/subr_witness.c
2692
if (class->lc_flags & LC_SLEEPLOCK)
sys/kern/subr_witness.c
2721
if ((class->lc_flags & LC_SLEEPLOCK) != 0) {
sys/kern/subr_witness.c
2831
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)));