HomeSort by relevance Sort by last modified time
    Searched full:permits (Results 1 - 25 of 271) sorted by null

1 2 3 4 5 6 7 8 91011

  /libcore/luni/src/main/java/java/util/concurrent/
Semaphore.java 15 * permits. Each {@link #acquire} blocks if necessary until a permit is
85 * available, or zero permits available. When used in this way, the
94 * guarantees about the order in which threads acquire permits. In
100 * #acquire() acquire} methods are selected to obtain permits in the order in
108 * honor the fairness setting, but will take any permits that are
119 * permits at a time. Beware of the increased risk of indefinite
140 * to represent permits. Subclassed into fair and nonfair
146 Sync(int permits) {
147 setState(permits);
196 NonfairSync(int permits) {
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
InterruptibleChannel.java 25 * A channel that can be asynchronously closed permits that a thread blocked on
30 * A channel that is interruptible permits a thread blocked on an I/O operation
ScatteringByteChannel.java 49 * if the channel has not been opened in a mode that permits
85 * if the channel has not been opened in a mode that permits
GatheringByteChannel.java 53 * if the channel has not been opened in a mode that permits
FileChannel.java 345 * if the channel has not been opened in a mode that permits
382 * if the channel has not been opened in a mode that permits
415 * if the channel has not been opened in a mode that permits
454 * if the channel has not been opened in a mode that permits
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
SemaphoreTest.java 65 for (int permits : new int[] { -1, 0, 1 }) {
67 Semaphore s = new Semaphore(permits, fair);
68 assertEquals(permits, s.availablePermits());
78 for (int permits : new int[] { -1, 0, 1 }) {
79 Semaphore s = new Semaphore(permits);
80 assertEquals(permits, s.availablePermits());
86 * tryAcquire succeeds when sufficient permits, else fails
341 * drainPermits reports and removes given number of permits
355 * reducePermits reduces number of permits
367 * a deserialized serialized semaphore has same number of permits
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
package.html 14 <li> Message Logging features - permits the application to log messages in
  /external/ppp/pppd/plugins/radius/
pppd-radius.8 20 The RADIUS plugin for pppd permits pppd to perform PAP, CHAP, MS-CHAP and
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.5.1.js 29 language permits the function to be invoked with some other number of
15.3.5-2.js 33 the language permits the function to be invoked with some other number
15.3.5-1.js 33 the language permits the function to be invoked with some other number
  /libcore/luni/src/main/java/java/security/
GuardedObject.java 52 * permits access. If access is not granted, then a {@code
  /libcore/luni/src/main/java/java/util/concurrent/locks/
package-info.java 10 * monitors. The framework permits much greater flexibility in the use of
  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementationSource.java 16 * This interface permits a DOM implementer to supply one or more
  /external/qemu/distrib/sdl-1.2.12/src/video/
math_private.h 37 /* A union which permits us to convert between a double and two 32 bit
131 /* A union which permits us to convert between a float and a 32 bit
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/function/
length.js 29 language permits the function to be invoked with some other number of
  /bionic/libm/src/
math_private.h 37 * A union which permits us to convert between a double and two 32 bit
128 * A union which permits us to convert between a float and a 32 bit
  /frameworks/base/graphics/java/android/graphics/
NinePatch.java 21 * The NinePatch class permits drawing a bitmap in nine sections.
  /libcore/luni/src/main/java/org/apache/xml/utils/
IntStack.java 29 * This is currently based on IntVector, which permits fast acess but pays a
ObjectStack.java 29 * This is currently based on ObjectVector, which permits fast acess but pays a
  /development/pdk/docs/porting/
getting_source_code.jd 20 <p>Git permits you to control access to working directories, and we recommend that you use it to limit Android repository access to only a few people within your organization (please refer to your Google NDA for potential contractual restraints on sharing Android source access). </p>
  /external/bluetooth/glib/glib/
gdate.h 168 * permits many formats but tries to catch common typos. If your data
  /external/chromium/sdch/open-vcdiff/src/
adler32.c 83 copyright notice in zlib.h, which permits alteration and redistribution
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
package-info.java 67 * a {@code volatile} variable except that it permits reorderings with
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMAxisIteratorBase.java 100 * (Returning "this" permits C++-style chaining of

Completed in 323 milliseconds

1 2 3 4 5 6 7 8 91011