Searched defs:exclusiveCount (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/locks/
H A DReentrantReadWriteLock.java272 static int exclusiveCount(int c) { return c & EXCLUSIVE_MASK; } method in class:ReentrantReadWriteLock.Sync
375 boolean free = exclusiveCount(nextc) == 0;
396 int w = exclusiveCount(c);
401 if (w + exclusiveCount(acquires) > MAX_COUNT)
468 if (exclusiveCount(c) != 0 &&
507 if (exclusiveCount(c) != 0) {
561 int w = exclusiveCount(c);
582 if (exclusiveCount(c) != 0 &&
621 return ((exclusiveCount(getState()) == 0) ?
631 return exclusiveCount(getStat
[all...]

Completed in 38 milliseconds