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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/helgrind/tests/
hg02_deadlock.stderr.exp 2 Thread #x was created
7 Thread #x: lock order "0x........ before 0x........" violated
rwlock_race.stderr.exp 2 Thread #x was created
7 Thread #x was created
12 Possible data race during write of size 4 at 0x........ by thread #x
16 This conflicts with a previous write of size 4 by thread #x
21 declared at rwlock_race.c:18, in frame #x of thread x
tc15_laog_lockdel.stderr.exp 4 Thread #x is the program's root thread
6 Thread #x: lock order "0x........ before 0x........" violated
  /frameworks/base/core/java/android/bluetooth/
BluetoothAudioGateway.java 19 import java.lang.Thread;
69 private Thread mConnectThead;
96 mConnectThead = new Thread(TAG) {
98 if (DBG) log("Connect Thread starting");
106 Log.i(TAG, "select thread timed out, but " +
108 Thread.sleep(mTimeoutRemainingMs);
110 Log.i(TAG, "select thread was interrupted (2), exiting");
151 if (DBG) log("Connect Thread finished");
169 if (DBG) log("stopping Connect Thread");
173 if (DBG) log("waiting for thread to terminate")
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
TraceTest.java 88 Thread t1 = new aThread();
90 Thread t2 = new aThread();
92 Thread t3 = new aThread();
102 private class aThread extends Thread {
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
DalvikThreadSampler.java 39 @Override public StackTraceElement[] getStackTrace(Thread thread) {
40 int count = VMStack.fillStackTraceElements(thread, mutableStackTraceElements[depth]);
  /libcore/luni/src/main/java/java/lang/
Runtime.java 72 private List<Thread> shutdownHooks = new ArrayList<Thread>();
260 Thread[] hooks;
263 hooks = new Thread[shutdownHooks.size()];
268 for (Thread hook : hooks) {
273 for (Thread hook : hooks) {
408 Thread.currentThread().interrupt();
507 * {@code Thread} that is ready to run, but has not yet been started. All
537 public void addShutdownHook(Thread hook) {
570 public boolean removeShutdownHook(Thread hook)
    [all...]
  /libcore/luni/src/main/java/sun/misc/
Unsafe.java 305 * Parks the calling thread for the specified amount of time,
306 * unless the "permit" for the thread is already available (due to
308 * spuriously (that is, without the thread being told to unpark
321 Thread.currentThread().parkUntil(time);
323 Thread.currentThread().parkFor(time);
328 * Unparks the given object, which must be a {@link Thread}.
336 if (obj instanceof Thread) {
337 ((Thread) obj).unpark();
  /libcore/luni/src/test/java/libcore/java/io/
OldPipedWriterTest.java 51 Thread.sleep(1000);
52 Thread.yield();
65 + Thread.currentThread().getName() + "): "
72 Thread readerThread;
96 readerThread = new Thread(reader = new PReader(rd), "Constructor(Reader)");
139 readerThread = new Thread(reader = new PReader(rd), "connect");
161 readerThread = new Thread(reader = new PReader(pw), "flush");
205 readerThread = new Thread(reader = new PReader(pw), "writeCII");
246 readerThread = new Thread(reader = new PReader(pw), "writeI");
  /packages/apps/Camera/tests/src/com/android/camera/stress/
ImageCapture.java 82 Thread.sleep(WAIT_FOR_IMAGE_CAPTURE_TO_BE_TAKEN);
85 Thread.sleep(WAIT_FOR_IMAGE_CAPTURE_TO_BE_TAKEN);
104 Thread.sleep(WAIT_FOR_SWITCH_CAMERA);
119 Thread.sleep(WAIT_FOR_SWITCH_CAMERA);
VideoCapture.java 79 Thread.sleep(WAIT_FOR_PREVIEW);
82 Thread.sleep(video_duration);
98 Thread.sleep(WAIT_FOR_SWITCH_CAMERA);
113 Thread.sleep(WAIT_FOR_SWITCH_CAMERA);
  /packages/apps/Gallery/src/com/android/camera/
ImageLoader.java 30 * A dedicated decoding thread used by ImageGallery.
36 // Queue of work to do in the worker thread. The work is done in order.
39 // the worker thread and a done flag so we know when to exit
41 private Thread mDecodeThread;
152 Thread t = new Thread(new WorkerThread());
165 Thread t = mDecodeThread;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
SystemFacade.java 66 * Start a thread.
68 public void startThread(Thread thread);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/actions/
WaitAction.java 41 Thread.sleep(ms);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
AdbWrapper.java 159 Thread t1 = new Thread("") { //$NON-NLS-1$
182 Thread t2 = new Thread("") { //$NON-NLS-1$
208 // before the thread have filled the arrays, so we wait for both threads and the
  /external/v8/src/
platform-freebsd.cc 63 // 0 is never a valid thread id on FreeBSD since tids and pids share a
394 class Thread::PlatformData : public Malloced {
396 pthread_t thread_; // Thread handle for pthread.
425 Thread::Thread(Isolate* isolate, const Options& options)
433 Thread::Thread(Isolate* isolate, const char* name)
441 Thread::~Thread() {
447 Thread* thread = reinterpret_cast<Thread*>(arg) local
    [all...]
  /cts/tests/tests/graphics/src/android/opengl/cts/
GLSurfaceViewTest.java 70 Thread.sleep(PAUSE_RESUME_DELAY);
75 Thread.sleep(PAUSE_RESUME_DELAY);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
HtmlReport.java 44 Thread t = new Thread(new Runnable() {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/monitorexit/
Test_monitorexit.java 28 * @title thread is not monitor owner
38 Thread th = new Thread(r);
  /cts/tools/vm-tests/src/dot/junit/opcodes/monitor_exit/
Test_monitor_exit.java 27 * @title thread is not monitor owner
36 Thread th = new Thread(r);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_exit/
Test_monitor_exit.java 27 * @title thread is not monitor owner
36 Thread th = new Thread(r);
  /dalvik/tests/088-monitor-verification/src/
Main.java 94 Class thing = Thread.class;
95 synchronized (Thread.class) {}
  /dalvik/vm/compiler/codegen/arm/
CalloutHelper.h 67 bool dvmUnlockObject(struct Thread* self, struct Object* obj); //OP_MONITOR_EXIT
85 Thread *self,
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ref/
ReferenceQueueTest.java 88 Thread ct = new Thread(new ChildThread());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ConcurrentModificationExceptionTest.java 60 Thread collectionSlapper = new Thread(cm);

Completed in 5033 milliseconds

1 2 3 4 5 6 7 8 91011>>