HomeSort by relevance Sort by last modified time
    Searched refs:tryLock (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
Mutex.h 82 ** Function: tryLock
89 bool tryLock ();
Mutex.cpp 109 ** Function: tryLock
116 bool Mutex::tryLock ()
121 ALOGE ("Mutex::tryLock: error=0x%X", res);
  /libcore/luni/src/main/java/java/util/concurrent/locks/
Lock.java 68 * #tryLock()}), an attempt to acquire the lock that can be
70 * the lock that can timeout ({@link #tryLock(long, TimeUnit)}).
216 * if (lock.tryLock()) {
232 boolean tryLock();
292 boolean tryLock(long time, TimeUnit unit) throws InterruptedException;
ReentrantLock.java 38 * Also note that the untimed {@link #tryLock()} method does not
97 * Performs non-fair tryLock. tryAcquire is implemented in
98 * subclasses, but both need nonfair try for trylock method.
316 * fair ordering policy, a call to {@code tryLock()} <em>will</em>
322 * {@link #tryLock(long, TimeUnit) tryLock(0, TimeUnit.SECONDS) }
335 public boolean tryLock() {
348 * are waiting for the lock. This is in contrast to the {@link #tryLock()}
349 * method. If you want a timed {@code tryLock} that does permit barging on
353 * if (lock.tryLock() ||
    [all...]