Searched refs:interruptMode (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DAbstractQueuedLongSynchronizer.java1793 private void reportInterruptAfterWait(int interruptMode) argument
1795 if (interruptMode == THROW_IE)
1797 else if (interruptMode == REINTERRUPT)
1820 int interruptMode = 0;
1823 if ((interruptMode = checkInterruptWhileWaiting(node)) != 0)
1826 if (acquireQueued(node, savedState) && interruptMode != THROW_IE)
1827 interruptMode = REINTERRUPT;
1830 if (interruptMode != 0)
1831 reportInterruptAfterWait(interruptMode);
1855 int interruptMode
[all...]
H A DAbstractQueuedSynchronizer.java2014 private void reportInterruptAfterWait(int interruptMode) argument
2016 if (interruptMode == THROW_IE)
2018 else if (interruptMode == REINTERRUPT)
2041 int interruptMode = 0;
2044 if ((interruptMode = checkInterruptWhileWaiting(node)) != 0)
2047 if (acquireQueued(node, savedState) && interruptMode != THROW_IE)
2048 interruptMode = REINTERRUPT;
2051 if (interruptMode != 0)
2052 reportInterruptAfterWait(interruptMode);
2076 int interruptMode
[all...]

Completed in 1567 milliseconds