| /packages/apps/Mms/src/com/android/mms/ui/ |
| ConversationList.java | 191 new Thread(new Runnable() { 288 // Run notifyDataSetChanged() on the main thread. 392 // Note: don't read the thread id data from the ConversationListItem view passed in. 512 * Start the process of putting up a dialog to confirm deleting a thread, 513 * but first start a background query to see if any of the threads or thread 515 * @param threadId id of the thread to delete or -1 for all threads 540 * Build and show the proper delete thread dialog. The UI is slightly different 541 * depending on whether there are locked messages in the thread(s) and whether we're 544 * @param deleteAll whether to show a single thread or all threads UI 545 * @param hasLockedMessages whether the thread(s) contain locked message [all...] |
| /packages/experimental/RpcPerformance/src/com/android/rpc_performance/ |
| ProviderPerfActivity.java | 263 new Thread(r).start(); 626 Thread.sleep(innerSleep);
|
| /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/explorer/ |
| DeviceExplorer.java | 155 * called once, when the application is initializing, from the UI thread. 343 // create and start the refresh thread 344 new Thread("Device Ls refresher") { 433 // create a thread for the output 434 new Thread("Traceview output") { 721 // ui thread. 741 * Refresh an entry from a non ui thread. [all...] |
| /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/ |
| LogPanel.java | 400 * called once, when the application is initializing, from the UI thread. 505 // start the logcat in a different thread 506 new Thread("Logcat") { //$NON-NLS-1$ 545 // when the thread finishes, no one will reference that object 568 * <b>MUST</b> be called from the ui thread. 895 * thread. [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
| BuildHelper.java | [all...] |
| /cts/tests/tests/webkit/src/android/webkit/cts/ |
| WebViewTest.java | 115 Log.w(LOGTAG, "tearDown(): Caught exception when posting Runnable to UI thread"); 449 // We need to yield the UI thread to allow the callback to 933 // File saving is done in a separate thread [all...] |
| /dalvik/vm/compiler/codegen/arm/ |
| Assemble.cpp | [all...] |
| /dalvik/vm/mterp/out/ |
| InterpC-allstubs.cpp | 377 extern "C" void dvmMterp_##_target(Thread* self, ## __VA_ARGS__); 381 void dvmMterp_##_target(Thread* self, ## __VA_ARGS__) { \ 392 * Redefine what used to be local variable accesses into Thread struct 426 extern "C" void dvmMterp_##_op(Thread* self); \ 427 void dvmMterp_##_op(Thread* self) { \ 494 * Periodically check for thread suspension. [all...] |
| InterpC-x86-atom.cpp | 377 extern "C" void dvmMterp_##_target(Thread* self, ## __VA_ARGS__); 381 void dvmMterp_##_target(Thread* self, ## __VA_ARGS__) { \ 392 * Redefine what used to be local variable accesses into Thread struct 426 extern "C" void dvmMterp_##_op(Thread* self); \ 427 void dvmMterp_##_op(Thread* self) { \ 494 * Periodically check for thread suspension. [all...] |
| InterpC-x86.cpp | 377 extern "C" void dvmMterp_##_target(Thread* self, ## __VA_ARGS__); 381 void dvmMterp_##_target(Thread* self, ## __VA_ARGS__) { \ 392 * Redefine what used to be local variable accesses into Thread struct 426 extern "C" void dvmMterp_##_op(Thread* self); \ 427 void dvmMterp_##_op(Thread* self) { \ 494 * Periodically check for thread suspension. [all...] |
| /frameworks/base/core/java/android/view/ |
| ViewRootImpl.java | 159 final Thread mThread; 225 // These can be accessed by any thread, must be protected with a lock. 275 private Thread mRenderProfiler; 341 mThread = Thread.currentThread(); 582 if (mThread != Thread.currentThread()) { 624 // Don't enable hardware acceleration when we're not on the main thread 628 + "acceleration outside of the main thread, aborting"); [all...] |
| ViewDebug.java | 428 * Starts profiling the looper associated with the current thread. 431 * same thread. 444 * Stops profiling the looper associated with the current thread. 520 // Don't block the UI thread 521 new Thread(new Runnable() { 579 buffer.putShort((short) 1); // we simulate only one thread [all...] |
| /cts/tests/tests/database/src/android/database/sqlite/cts/ |
| SQLiteDatabaseTest.java | [all...] |
| /frameworks/base/core/java/android/app/ |
| Activity.java | 195 * onDestroy(). For example, if it has a thread running in the background 196 * to download data from the network, it may create that thread in onCreate() 197 * and then stop the thread in onDestroy(). 655 // set by the thread after the constructor and before onCreate(Bundle savedInstanceState) is called. [all...] |
| /frameworks/base/opengl/java/android/opengl/ |
| GLErrorWrapper.java | 36 Thread mOurThread; 46 Thread currentThread = Thread.currentThread(); 52 "OpenGL method called from wrong thread."); [all...] |
| /cts/tests/tests/widget/src/android/widget/cts/ |
| ToastTest.java | 101 Thread.sleep(TIME_FOR_UI_OPERATION);
|
| /cts/tools/host/src/com/android/cts/ |
| TestPackage.java | 585 * Send notify to wake up the thread waiting on the object. 649 Log.d("test thread interrupted"); 766 Thread.sleep(HostConfig.Ints.postInstallWaitMs.value()); 797 * Set the test session thread. 799 * @param thread 801 public void setSessionThread(TestSessionThread thread) { 802 mTestThread = thread; [all...] |
| /dalvik/vm/ |
| InlineNative.cpp | 67 * Remember that these functions are executing while the thread is in 70 * suspend the thread. Since these are arguably native implementations 72 * the thread state. 917 Thread* self = dvmThreadSelf();
|
| /dalvik/vm/mterp/x86/ |
| footer.S | 485 call dvmHandleStackOverflow # call: (Thread* self, Method* meth) 536 * expected profile: dvmMterpStdBail(Thread *self, bool changeInterp)
|
| /dalvik/vm/native/ |
| java_lang_Class.cpp | 494 Thread* self = dvmThreadSelf();
|
| /development/cmds/monkey/src/com/android/commands/monkey/ |
| MonkeySourceScript.java | 687 Thread.sleep(time);
|
| /development/samples/LunarLander/src/com/example/android/lunarlander/ |
| LunarView.java | 48 class LunarThread extends Thread { 163 /** Message handler used by thread to interact with TextView */ 422 * Used to signal the thread whether it should be running or not. 423 * Passing true allows the thread to run; passing false will shut it 458 * owned by this thread, we can't touch the state of that View. 460 * thread, which updates the user-text View. 784 /** The thread that actually draws the animation */ 785 private LunarThread thread; field in class:LunarView 794 // create thread only; it's started in surfaceCreated() 795 thread = new LunarThread(holder, context, new Handler() [all...] |
| /external/chromium/chrome/browser/chromeos/login/ |
| camera.cc | 25 #include "base/threading/thread.h" 131 Camera::Camera(Delegate* delegate, base::Thread* thread, bool mirrored) 133 thread_(thread),
|
| /external/chromium/chrome/browser/safe_browsing/ |
| malware_details_unittest.cc | 177 base::Thread::Options(MessageLoop::TYPE_IO, 0)));
|
| /external/libvpx/examples/includes/geshi/geshi/ |
| rails.php | 99 'Test::Unit::TestCase', 'Test::Unit', 'Test', 'Thread',
|