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

<<21222324252627282930>>

  /external/javassist/src/main/javassist/util/proxy/
ProxyObjectInputStream.java 35 * read from the input stream will default to the current thread's context class loader or the system
46 loader = Thread.currentThread().getContextClassLoader();
95 * from the stream. defaults to the context class loader of the thread which creates
  /external/nist-sip/java/gov/nist/javax/sip/stack/
TLSMessageProcessor.java 33 * should be added. Mike Andrews suggested that the thread be
34 * accessible so as to implement clean stop using Thread.join().
58 * Sit in a loop waiting for incoming tls connections and start a new thread to handle each new
100 Thread thread = new Thread(this); local
101 thread.setName("TLSMessageProcessorThread");
103 thread.setPriority(Thread.MAX_PRIORITY);
104 thread.setDaemon(true)
    [all...]
  /external/v8/src/
v8threads.h 45 // Id of thread.
49 // Should the thread be terminated when it is restored?
55 // Get data area for archiving a thread.
138 // The ContextSwitcher thread is used to schedule regular preemptions to
140 // StartPreemption if there is more than one thread running. If not, a single
142 class ContextSwitcher: public Thread {
144 // Set the preemption interval for the ContextSwitcher thread.
150 // Preempted thread needs to call back to the ContextSwitcher to acknowledge
  /external/valgrind/main/helgrind/tests/
tc06_two_races.stderr.exp 2 Thread #x is the program's root thread
4 Thread #x was created
9 Possible data race during read of size 4 at 0x........ by thread #x
11 This conflicts with a previous write of size 4 by thread #x
18 Possible data race during write of size 4 at 0x........ by thread #x
20 This conflicts with a previous write of size 4 by thread #x
27 Possible data race during read of size 4 at 0x........ by thread #x
29 This conflicts with a previous write of size 4 by thread #x
36 Possible data race during write of size 4 at 0x........ by thread #
    [all...]
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 40 class BootAnimation : public Thread, public IBinder::DeathRecipient
  /frameworks/base/core/tests/coretests/src/android/os/
TestHandlerThread.java 80 class LooperThread extends Thread {
  /frameworks/base/core/tests/coretests/src/android/util/
TouchModeFlexibleAsserts.java 67 Thread.sleep(200);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
EnergyProbe.java 87 Thread.sleep(mCapturePeriodMs);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/power/
MediaPlayerPowerTest.java 55 Thread.sleep(200000);
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
DataVerify.java 74 Thread.sleep(TIME_WAIT);
  /frameworks/base/services/java/com/android/server/wm/
ViewServer.java 68 private Thread mThread;
105 mThread = new Thread(this, "Remote View Server [port=" + mPort + "]");
163 while (Thread.currentThread() == mThread) {
296 while (!Thread.interrupted()) {
  /frameworks/base/test-runner/src/android/test/
SyncBaseInstrumentation.java 61 Thread.sleep(1000);
  /frameworks/base/tests/CoreTests/android/core/
InetAddrTest.java 92 Thread.sleep(50);
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
TestsListPreloaderThread.java 27 * A Thread that is responsible for generating a lists of tests to run.
29 public class TestsListPreloaderThread extends Thread {
  /frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
UnitTest.java 21 public class UnitTest extends Thread {
  /libcore/luni/src/main/java/javax/net/ssl/
SSLSocketFactory.java 50 ClassLoader cl = Thread.currentThread().getContextClassLoader();
  /libcore/luni/src/main/java/javax/xml/transform/
TransformerFactory.java 97 classLoader = Thread.currentThread().getContextClassLoader();
119 * <code>Thread</code>s running concurrently.
121 * different <code>Thread</code>s.</p>
131 * a transformation in a single <code>Thread</code>, never
150 * in a single thread, never null.
  /libcore/luni/src/test/java/libcore/java/net/
OldCookieHandlerTest.java 45 class TestThread extends Thread {
61 TestThread thread = new TestThread(); local
63 thread.start();
65 thread.join();
  /packages/apps/QuickSearchBox/tests/slow/src/com/android/quicksearchbox/tests/slow/
SlowSuggestionProvider.java 51 Thread.sleep(20000);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
PackageIconLoaderTest.java 42 // we do this afterwards, as we need to have the thread set up (it calls create()).
65 private class ConsumerThread extends Thread {
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
PriorityThreadFactoryTest.java 43 Thread t = factory.newThread(r);
  /packages/experimental/StrictModeTest/src/com/android/strictmodetest/
ServiceBase.java 75 Thread.sleep(100);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
ToolPackage.java 304 Thread t1 = new Thread("") { //$NON-NLS-1$
326 Thread t2 = new Thread("") { //$NON-NLS-1$
351 // before the thread have filled the arrays, so we wait for both threads and the
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLSessionTest.java 256 Thread serverThread, clientThread;
269 serverThread = new Thread(server);
270 clientThread = new Thread(client);
274 Thread.currentThread().sleep(1000);
283 Thread.currentThread().sleep(500);
291 assertNull("server thread has a pending exception: " + server.exception,
296 assertNull("client thread has a pending exception: " + client.exception,
533 Thread.currentThread().sleep(500);
603 Thread.currentThread().sleep(500);
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerTest.java 98 Thread.sleep(WAIT_TIME);
101 Thread.sleep(WAIT_TIME);
206 Thread.sleep(WAIT_TIME);
218 Thread.sleep(WAIT_TIME);
262 Thread.sleep(WAITFOR_MSEC);

Completed in 3323 milliseconds

<<21222324252627282930>>