HomeSort by relevance Sort by last modified time
    Searched defs:putLock (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/java/java/util/concurrent/
LinkedBlockingQueue.java 85 * A variant of the "two lock queue" algorithm. The putLock gates
99 * Whenever an element is enqueued, the putLock is acquired and
101 * enqueued Node by either acquiring the putLock (via fullyLock)
161 private final ReentrantLock putLock = new ReentrantLock();
164 private final Condition notFull = putLock.newCondition();
184 final ReentrantLock putLock = this.putLock;
185 putLock.lock();
189 putLock.unlock();
199 // assert putLock.isHeldByCurrentThread()
    [all...]
  /prebuilts/misc/common/robolectric/lib/
backport-util-concurrent-3.1.jar 
  /prebuilts/tools/common/m2/repository/backport-util-concurrent/backport-util-concurrent/3.1/
backport-util-concurrent-3.1.jar 

Completed in 617 milliseconds