Home | History | Annotate | Download | only in utils

Lines Matching refs:mLockCount

63     private final ThreadLocal<Integer> mLockCount =
123 } else if (mLockCount.get() != 1) {
136 mLockCount.remove();
182 ownedLocks = mLockCount.get();
205 ownedLocks = mLockCount.get() + 1;
206 mLockCount.set(ownedLocks);
250 ownedLocks = mLockCount.get();
278 ownedLocks = mLockCount.get() + 1;
279 mLockCount.set(ownedLocks);
299 if (mLockCount.get() <= 0) {
322 ownedLocks = mLockCount.get() - 1;
323 mLockCount.set(ownedLocks);