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

1 2 3

  /dalvik/tests/067-preemptive-unpark/
expected.txt 3 Asking thread to park
4 park() returned quickly
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
LockSupportTest.java 22 * park is released by unpark occurring after park
27 LockSupport.park();
37 * park is released by unpark occurring before park
43 LockSupport.park();
52 * park is released by interrupt
57 LockSupport.park();
67 * park returns if interrupted before park
    [all...]
  /external/bluetooth/bluez/src/
hcid.conf 55 # park - allow park mode
56 lp rswitch,hold,sniff,park;
main.conf 61 # and park state(0x0008) are all enabled. However, some devices have
62 # connection stability issue or fail to setup SCO when the link is in park
63 # state, which requires park state bit cleared.
hcid.conf.5.in 194 \fBlp\fP none|rswitch,hold,sniff,park
198 sniff mode. \fIpark\fP means allow park mode. Several options can be
207 park: this is a mode where the device is put on standby on the piconet, for power\-saving purposes for example.
  /libcore/luni/src/main/java/java/util/concurrent/locks/
LockSupport.java 18 * Semaphore} class). A call to {@code park} will return immediately
24 * <p>Methods {@code park} and {@code unpark} provide efficient
28 * between one thread invoking {@code park} and another thread trying
30 * permit. Additionally, {@code park} will return if the caller's
32 * {@code park} method may also return at any other time, for "no
34 * conditions upon return. In this sense {@code park} serves as an
39 * <p>The three forms of {@code park} each also support a
50 * useful for most concurrency control applications. The {@code park}
52 * <pre>while (!canProceed()) { ... LockSupport.park(this); }</pre>
54 * call to {@code park} entail locking or blocking. Because only on
154 public static void park(Object blocker) { method in class:LockSupport
281 public static void park() { method in class:LockSupport
    [all...]
AbstractQueuedLongSynchronizer.java 151 * blocked (via park), so the current node must
323 * rather than to use timed park. A rough estimate suffices
548 * to signal it, so it can safely park.
563 * need a signal, but don't park yet. Caller will need to
579 * Convenience method to park and then check if interrupted
584 LockSupport.park(this);
    [all...]
  /dalvik/tests/067-preemptive-unpark/src/
Main.java 23 System.out.println("Asking thread to park");
95 UNSAFE.park(false, 500 * 1000000); // 500 msec
99 System.out.println("park()ed for " + elapsed + " msec");
102 System.out.println("park() returned quickly");
  /libcore/luni/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/
ThreadsTest.java 26 * Tests for the <code>park()</code> functionality of {@link Unsafe}.
51 /** Test the case where the park times out. */
85 /** Test the case where the park times out. */
147 * either case, this constructor takes a duration to park for
163 UNSAFE.park(true, start + amount);
165 UNSAFE.park(false, amount);
  /system/bluetooth/data/
main.conf 63 # and park state(0x0008) are all enabled. However, some devices have
64 # connection stability issue or fail to setup SCO when the link is in park
65 # state, which requires park state bit cleared.
  /libcore/luni/src/main/java/org/apache/harmony/kernel/vm/
LangAccess.java 84 * next time the thread is told to park, it will merely clear its
85 * latent park bit and carry on without blocking.
106 * @param nanos number of nanoseconds to park for or <code>0</code>
107 * to park indefinitely
  /external/kernel-headers/original/linux/mtd/
bbm.h 8 * Kyungmin Park <kyungmin.park@samsung.com>
  /external/bluetooth/bluez/compat/
fakehid.txt 18 <park state> <RSSI> <channel quality> <SCO link> <HV2 packets>
100 <park state> <RSSI> <channel quality> <SCO link> <HV2 packets>
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
java.util.concurrent.locks.LockSupport.html 94 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/util/concurrent/locks/LockSupport.html#park(java.lang.Object)" target="_top"><code>park</code></A>(<code>Object</code>)</nobr>
  /libcore/luni/src/main/java/java/util/concurrent/
SynchronousQueue.java 110 * Blocking is mainly accomplished using LockSupport park/unpark,
180 * rather than to use timed park. A rough estimate suffices.
209 volatile Thread waiter; // to control park/unpark
388 * to be at the head of the stack, calls to park are
425 s.waiter = w; // establish waiter so can park next iter
427 LockSupport.park(this);
495 volatile Thread waiter; // to control park/unpark
719 LockSupport.park(this);
    [all...]
  /external/bluetooth/bluez/tools/
hcitool.1 164 Possible values are RSWITCH, HOLD, SNIFF and PARK.
  /libcore/luni/src/main/java/java/lang/
Thread.java 75 /** Park states */
77 /** park state indicating unparked */
80 /** park state indicating preemptively unparked */
83 /** park state indicating parked */
190 /** the park state of the thread */
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
NetscapeDraftSpec.java 53 * @author <a href="mailto:jericho@thinkfree.com">Park, Sung-Gu</a>
RFC2109Spec.java 53 * @author <a href="mailto:jericho@thinkfree.com">Park, Sung-Gu</a>
BasicClientCookie.java 48 * @author <a href="mailto:jericho@thinkfree.com">Park, Sung-Gu</a>
  /external/apache-http/src/org/apache/http/message/
BasicHeaderElement.java 73 * @author <a href="mailto:jericho@thinkfree.com">Park, Sung-Gu</a>
BasicHeaderValueParser.java 52 * @author <a href="mailto:jericho@thinkfree.com">Park, Sung-Gu</a>
  /external/bluetooth/hcidump/
ChangeLog 90 Add decoding for hold mode, sniff mode and park state.
  /libcore/luni/src/main/java/sun/misc/
Unsafe.java 333 public void park(boolean absolute, long time) { method in class:Unsafe
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 108 LockSupport.park();

Completed in 571 milliseconds

1 2 3