| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
| AndroidLaunchController.java | 626 // Since this is called from the UI thread we spawn a new thread 628 new Thread() { [all...] |
| /dalvik/vm/alloc/ |
| Copying.cpp | 57 * The block queue exists to thread lists of blocks from the various [all...] |
| /dalvik/vm/reflect/ |
| Annotation.cpp | 122 Thread* self = dvmThreadSelf(); 321 Thread* self = dvmThreadSelf(); 573 Thread* self = dvmThreadSelf(); 647 Thread* self = dvmThreadSelf(); 741 Thread* self = dvmThreadSelf(); [all...] |
| /dalvik/vm/compiler/codegen/arm/Thumb2/ |
| Gen.cpp | 229 * the simple case is thin lock, held by the unlocking thread with 250 loadWordDisp(cUnit, r6SELF, offsetof(Thread, threadId), r3); // Get threadId 306 loadWordDisp(cUnit, r6SELF, offsetof(Thread, threadId), r3); // Get threadId
|
| /external/antlr/src/org/antlr/runtime/debug/ |
| RemoteDebugEventSocketListener.java | 465 /** Create a thread to listen to the remote running recognizer */ 467 Thread t = new Thread(this);
|
| /external/apache-http/src/org/apache/commons/logging/ |
| LogFactory.java | 65 * to specify whether logging classes should be loaded via the thread 419 // Determine whether we will be using the thread context class loader to 786 * @return the context classloader associated with the current thread, [all...] |
| /external/chromium/base/files/ |
| file_path_watcher_browsertest.cc | 28 #include "base/threading/thread.h" 39 // the test thread is waiting on once they all came in. 46 // Called from the file thread by the delegates. 88 // not thread safe for setting expectations, so the test code couldn't safely 90 // we keep simple thread safe status flags in TestDelegate. 95 // guarantee |loop| outlives the file thread on which OnFilePathChanged runs. 115 // A helper class for setting up watches on the file thread. 153 // Create a separate file thread in order to test proper thread usage. 154 base::Thread::Options options(MessageLoop::TYPE_IO, 0) [all...] |
| /external/chromium/chrome/browser/sync/ |
| profile_sync_service_typed_url_unittest.cc | 11 #include "base/threading/thread.h" 39 using base::Thread; 111 ACTION_P2(RunTaskOnDBThread, thread, backend) { 112 thread->message_loop()->PostTask( 153 // The request context gets deleted on the I/O thread. To prevent a leak 281 Thread history_thread_;
|
| /external/chromium/third_party/libjingle/source/talk/base/ |
| schanneladapter.cc | 40 #include "talk/base/thread.h" 410 if (Thread* thread = Thread::Current()) { 412 thread->Post(this); 414 LOG(LS_ERROR) << "No thread context available for SChannelAdapter";
|
| /frameworks/base/core/tests/coretests/src/android/app/ |
| DownloadManagerBaseTest.java | 738 Thread.sleep(end - now); [all...] |
| /frameworks/base/core/tests/coretests/src/android/util/ |
| LruCacheTest.java | 374 assertFalse(Thread.holdsLock(this)); 390 assertFalse(Thread.holdsLock(this));
|
| /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/ |
| DownloadManagerBaseTest.java | 579 Thread.sleep(end - now); 803 Thread.sleep(DEFAULT_WAIT_POLL_TIME);
|
| /frameworks/base/obex/javax/obex/ |
| ServerSession.java | 57 private Thread mProcessThread; 81 mProcessThread = new Thread(this);
|
| /frameworks/base/test-runner/src/android/test/ |
| InstrumentationTestRunner.java | 508 * Initialize the current thread as a looper. 779 if (mTestNum == 1) Thread.sleep(mDelayMsec); [all...] |
| TouchUtils.java | 361 Thread.sleep(1000); 416 Thread.sleep((long)(ViewConfiguration.getLongPressTimeout() * 1.5f));
|
| /libcore/luni/src/main/java/java/util/prefs/ |
| AbstractPreferences.java | 51 /** the event dispatcher thread */ 62 Runtime.getRuntime().addShutdownHook(new Thread() { 816 private static class EventDispatcher extends Thread {
|
| /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
| OpenSSLSocketImpl.java | 568 // The RI runs the handlers in a separate thread, 571 // the handshaking thread just because a listener 573 Thread thread = Thread.currentThread(); local 574 thread.getUncaughtExceptionHandler().uncaughtException(thread, e); [all...] |
| /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
| BluetoothPbapService.java | 350 Thread.sleep(3000); 352 Log.e(TAG, "socketAcceptThread thread was interrupted (3)"); 422 // acquire the wakeLock before start Obex transaction thread 501 * A thread that runs in the background waiting for remote rfcomm 502 * connect.Once a remote socket connected, this thread shall be 503 * shutdown.When the remote disconnect,this thread shall run again waiting 506 private class SocketAcceptThread extends Thread { 561 stopped = true; // job done ,close this thread;
|
| /packages/apps/Mms/src/com/android/mms/dom/smil/ |
| SmilPlayer.java | 40 * <li>The player runs in a different thread which intends not to block the main thread.</li> 82 private Thread mPlayerThread; 311 mPlayerThread = new Thread(this);
|
| /packages/apps/MusicFX/src/com/android/musicfx/seekbar/ |
| ProgressBar.java | 75 * a worker thread to update the user interface to notify the user of progress: 94 * // Start lengthy operation in a background thread 95 * new Thread(new Runnable() { 247 mUiThreadId = Thread.currentThread().getId(); 620 if (mUiThreadId == Thread.currentThread().getId()) { 878 // let's be nice with the UI thread 893 // let's be nice with the UI thread [all...] |
| /system/media/mca/filterfw/java/android/filterfw/core/ |
| Filter.java | 31 import java.lang.Thread; 86 ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
|
| /cts/tests/tests/content/src/android/content/cts/ |
| SharedPreferencesTest.java | 133 Thread.sleep(1000); // ms
|
| /cts/tests/tests/database/src/android/database/sqlite/cts/ |
| DatabaseStatementTest.java | 246 private static class StatementTestThread extends Thread { 288 StatementTestThread thread = new StatementTestThread(mDatabase, statement); local 289 thread.start(); 291 thread.join();
|
| /cts/tests/tests/media/src/android/media/cts/ |
| BassBoostTest.java | 415 class ListenerThread extends Thread { 436 // Save the looper so that we can terminate this thread 494 // Terminates the listener looper thread.
|
| PresetReverbTest.java | 361 class ListenerThread extends Thread { 382 // Save the looper so that we can terminate this thread 440 // Terminates the listener looper thread.
|