Home
last modified time | relevance | path

Searched refs:tryEnter (Results 1 – 2 of 2) sorted by relevance

/external/guava/guava-tests/test/com/google/common/util/concurrent/
DMonitorTestCase.java77 private String tryEnter() { in tryEnter() method in MonitorTestCase
109 thread1.callAndAssertReturns(true, tryEnter()); in testTryEnter()
110 thread2.callAndAssertReturns(false, tryEnter()); in testTryEnter()
111 thread1.callAndAssertReturns(true, tryEnter()); in testTryEnter()
112 thread2.callAndAssertReturns(false, tryEnter()); in testTryEnter()
114 thread2.callAndAssertReturns(false, tryEnter()); in testTryEnter()
116 thread2.callAndAssertReturns(true, tryEnter()); in testTryEnter()
/external/guava/guava/src/com/google/common/util/concurrent/
DMonitor.java412 public boolean tryEnter() { in tryEnter() method in Monitor