Home
last modified time | relevance | path

Searched refs:fair (Results 1 – 25 of 62) sorted by relevance

123

/external/guava/guava/src/com/google/common/util/concurrent/
DCycleDetectingLockFactory.java261 public ReentrantLock newReentrantLock(String lockName, boolean fair) { in newReentrantLock() argument
262 return policy == Policies.DISABLED ? new ReentrantLock(fair) in newReentrantLock()
264 new LockGraphNode(lockName), fair); in newReentrantLock()
280 String lockName, boolean fair) { in newReentrantReadWriteLock() argument
281 return policy == Policies.DISABLED ? new ReentrantReadWriteLock(fair) in newReentrantReadWriteLock()
283 new LockGraphNode(lockName), fair); in newReentrantReadWriteLock()
448 public ReentrantLock newReentrantLock(E rank, boolean fair) { in newReentrantLock() argument
449 return policy == Policies.DISABLED ? new ReentrantLock(fair) in newReentrantLock()
450 : new CycleDetectingReentrantLock(lockGraphNodes.get(rank), fair); in newReentrantLock()
470 E rank, boolean fair) { in newReentrantReadWriteLock() argument
[all …]
DMonitor.java320 private final boolean fair; field in Monitor
348 public Monitor(boolean fair) { in Monitor() argument
349 this.fair = fair; in Monitor()
350 this.lock = new ReentrantLock(fair); in Monitor()
375 if (!fair && lock.tryLock()) { in enter()
478 if (fair || !lock.tryLock()) { in enterWhen()
522 if (fair || !lock.tryLock()) { in enterWhenUninterruptibly()
780 return fair; in isFair()
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
DMonitorBasedArrayBlockingQueue.java171 public MonitorBasedArrayBlockingQueue(int capacity, boolean fair) { in MonitorBasedArrayBlockingQueue() argument
175 monitor = new Monitor(fair); in MonitorBasedArrayBlockingQueue()
209 public MonitorBasedArrayBlockingQueue(int capacity, boolean fair, in MonitorBasedArrayBlockingQueue() argument
211 this(capacity, fair); in MonitorBasedArrayBlockingQueue()
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
DAbstractConnPool.java109 boolean fair = false; //@@@ check parameters to decide in AbstractConnPool()
110 poolLock = new ReentrantLock(fair); in AbstractConnPool()
/external/valgrind/helgrind/tests/
Dtc09_bad_unlock.vgtest2 vgopts: --fair-sched=try
Dannotate_hbefore.vgtest1 vgopts: -q --fair-sched=try
Dbar_bad.vgtest3 vgopts: -q --fair-sched=try
/external/valgrind/drd/tests/
Dbar_bad.vgtest3 vgopts: --fair-sched=try
Dbar_bad_xml.vgtest2 vgopts: --xml=yes --xml-fd=2 --fair-sched=try
Dannotate_sem.vgtest2 vgopts: --fair-sched=try --read-var-info=yes --check-stack-var=yes --show-confl-seg=no
Dannotate_hbefore.vgtest2 vgopts: --fair-sched=try --read-var-info=yes --check-stack-var=yes --show-confl-seg=no
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DMonitorTestCase.java63 boolean fair = new Random().nextBoolean(); in setUp()
64 monitor = new Monitor(fair); in setUp()
/external/autotest/client/tests/dbt2/
Dcontrol7 Dbt-2 is a fair-use implementation of the TPC-C benchmark. The test is
/external/curl/docs/
DREADME.win3212 systems. While not being the main develop target, a fair share of curl users
DLICENSE-MIXING.md4 libcurl can be built to use a fair amount of various third party libraries,
/external/python/cpython2/Demo/
DREADME7 A fair number of utilities that are useful when while developing
/external/valgrind/
DREADME.solaris129 - Implement ticket locking for fair scheduling (--fair-sched=yes).
/external/llvm/test/Transforms/ConstantHoisting/ARM/
Dbad-cases.ll5 ; prologue/epilogue. Elsewhere they're fair game though.
/external/brotli/tests/testdata/
Dplrabn12.txt515 Beguiled by fair idolatresses, fell
538 Was fair Damascus, on the fertile banks
1272 Dwell, not unvisited of Heaven's fair light,
1524 The one seemed woman to the waist, and fair,
1622 Now in thine eye so foul?--once deemed so fair
1631 Then shining heavenly fair, a goddess armed,
1692 And my fair son here show'st me, the dear pledge
1982 Cut off, and for the book of knowledge fair
2276 With joy and peace triumphing, and fair truth.
2492 At sight of all this world beheld so fair.
[all …]
Dasyoulik.txt93 are bred better; for, besides that they are fair
360 CELIA 'Tis true; for those that she makes fair she scarce
370 CELIA No? when Nature hath made a fair creature, may she
545 ORLANDO No, fair princess; he is the general challenger: I
563 so fair and excellent ladies any thing. But let
564 your fair eyes and gentle wishes go with me to my
659 CELIA Ay. Fare you well, fair gentleman.
1528 And says, if ladies be but young and fair,
1675 In fair round belly with good capon lined,
1797 The fair, the chaste and unexpressive she.
[all …]
/external/eigen/
DNOTICE149 applicable copyright doctrines of fair use, fair dealing, or other
DCOPYING.MPL2149 applicable copyright doctrines of fair use, fair dealing, or other
/external/libnl/doc/
Droute.txt1218 in different forms. They may be used to implement fair queueing,
1457 The queueing discipline (qdisc) is used to implement fair queueing,
1476 technique in qdiscs to implement fair queueing between flows or
1510 impelemting fair queueing. Each class is assigned a quantum specyfing
/external/libvncserver/
DNEWS133 I did test it out a fair amount on my old Sparcstation 20 wrt a user's
/external/python/cpython2/Doc/library/
Durlparse.rst297 relative URL, including a fair number of "Abnormal Examples" which govern the

123