HomeSort by relevance Sort by last modified time
    Searched refs:Thread (Results 451 - 475 of 1369) sorted by null

<<11121314151617181920>>

  /hardware/ti/omap4xxx/camera/inc/
ANativeWindowDisplayAdapter.h 109 class DisplayThread : public Thread
116 : Thread(false), mDisplayAdapter(da) { }
Encoder_libjpeg.h 87 class Encoder_libjpeg : public Thread {
112 : Thread(false), mMainInput(main_jpeg), mThumbnailInput(tn_jpeg), mCb(cb),
126 // start thread to encode thumbnail
134 // check if it is main jpeg thread
136 // wait until tn jpeg thread exits.
146 // encoder thread runs, self-destructs, and then exits
  /libcore/luni/src/main/java/java/util/concurrent/
CyclicBarrier.java 19 * that is run once per barrier point, after the last thread in the party
60 * new Thread(new Worker(i)).start();
66 * Here, each worker thread processes a row of the matrix then waits at the
76 * {@link #await} returns the arrival index of that thread at the barrier.
77 * You can then choose which thread should execute the barrier action, for
84 * for failed synchronization attempts: If a thread leaves a barrier
91 * <p>Memory consistency effects: Actions in a thread prior to calling
173 if (Thread.interrupted()) {
209 Thread.currentThread().interrupt();
233 * performed by the last thread entering the barrier
    [all...]
SynchronousQueue.java 20 * thread, and vice versa. A synchronous queue does not have any
24 * (using any method) unless another thread is trying to remove it;
27 * inserting thread is trying to add to the queue; if there is no such
28 * queued thread then no element is available for removal and
36 * object running in one thread must sync up with an object running
37 * in another thread in order to hand it some information, event, or
67 * contention but Lifo maintains higher thread locality in common
149 * by checking Thread.interrupted.
204 volatile Thread waiter; // to control park/unpark
221 * Tries to match node s to this node, if so, waking up thread
    [all...]
  /libcore/luni/src/main/java/javax/xml/validation/
SchemaFactory.java 41 * The {@link SchemaFactory} class is not thread-safe. In other words,
43 * one thread is using a {@link SchemaFactory} object at any
51 * even from the same thread.
182 cl = Thread.currentThread().getContextClassLoader();
210 classLoader = Thread.currentThread().getContextClassLoader();
  /libcore/luni/src/test/java/libcore/java/lang/
OldObjectTest.java 126 class TestThread1 extends Thread {
160 class TestThread2 extends Thread {
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketTest.java 58 class DatagramServer extends Thread {
76 Thread.yield();
309 class DatagramServer extends Thread {
327 Thread.yield();
388 Thread.sleep(1000);
469 Thread.sleep(1000);
522 Thread.sleep(1000);
574 Thread.sleep(1000);
805 Thread.sleep(1000);
818 new Thread(new TestDGRcv(), "DGSender").start()
869 Thread thread = new Thread(runnable, "DatagramSocket.receive1"); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherThread.java 61 Thread thread = null; local
69 thread = new Thread(this);
70 thread.start();
72 thread.join();
  /packages/apps/Camera/tests/src/com/android/camera/stress/
CameraLatency.java 76 Thread.sleep(WAIT_FOR_IMAGE_CAPTURE_TO_BE_TAKEN);
78 Thread.sleep(WAIT_FOR_IMAGE_CAPTURE_TO_BE_TAKEN);
  /packages/apps/Gallery/tests/src/com/android/camera/
BitmapManagerUnitTests.java 35 private class DecodeThread extends Thread {
72 Thread t = new DecodeThread();
77 // Disallow thread t to decode.
81 // Allow thread t to decode again.
  /packages/apps/Mms/src/com/android/mms/
LogTag.java 67 s = "[" + Thread.currentThread().getId() + "] " + s;
87 new Thread(new Runnable() {
  /system/media/mca/filterfw/java/android/filterfw/core/
FilterFactory.java 27 import java.lang.Thread;
43 mCurrentClassLoader = Thread.currentThread().getContextClassLoader();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CollectionsTest.java     [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CollectionsTest.java     [all...]
  /external/valgrind/main/helgrind/
hg_errors.c 163 XE_UnlockForeign, // unlocking a lock held by some other thread
180 Thread* thr;
190 Thread* h1_ct; /* non-NULL means h1 info present */
193 Thread* h2_ct; /* non-NULL means h2 info present */
199 Thread* thr; /* doing the unlocking */
203 Thread* thr; /* doing the unlocking */
204 Thread* owner; /* thread that actually holds the lock */
208 Thread* thr; /* doing the unlocking */
212 Thread* thr;
    [all...]
  /external/v8/src/
platform-win32.cc 387 // Please notice that this code is not thread-safe.
585 // Returns the accumulated user time for thread.
590 // Get the amount of time that the thread has executed in user mode.
1477 Thread* thread = reinterpret_cast<Thread*>(arg); local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
BackgroundAudio.java 27 public class BackgroundAudio extends Thread {
64 start(); // Begin background thread to push audio data
76 return; // End thread
  /cts/tests/src/android/media/cts/
VideoSurfaceView.java 65 Thread.sleep(SLEEP_TIME);
68 Thread.sleep(SLEEP_TIME * 5);
71 Thread.sleep(SLEEP_TIME * 1);
84 Thread.sleep(SLEEP_TIME);
  /cts/tests/src/android/view/animation/cts/
AnimationTestUtils.java 106 Thread.sleep(duration + TIMEOUT_DELTA);
  /cts/tests/tests/content/src/android/content/cts/
ClipboardManagerListenerTest.java 69 Thread.sleep(1000);
  /cts/tests/tests/media/src/android/media/cts/
AsyncPlayerTest.java 55 Thread.sleep(PLAY_TIME);
FaceDetectorTest.java 67 Thread.sleep(waitMsec);
  /cts/tests/tests/os/src/android/os/cts/
TokenWatcherTest.java 56 new Thread() {
66 Thread.sleep(50);
225 Thread.sleep(DELAY);
236 Thread.sleep(DELAY);
  /cts/tests/tests/util/src/android/util/cts/
TimingLoggerTest.java 88 Thread.sleep(SLEEPING_MSEC);
  /cts/tools/host/src/com/android/cts/
HostSideOnlyTest.java 37 * The Thread to be run host side unit test.
39 class HostSideTestRunner extends Thread {

Completed in 3199 milliseconds

<<11121314151617181920>>