| /external/chromium/third_party/libjingle/source/talk/session/tunnel/ |
| pseudotcpchannel.cc | 43 // MSG_WK_* - worker thread messages 44 // MSG_ST_* - stream thread messages 45 // MSG_SI_* - signal thread messages 77 // parent_ is accessed and modified exclusively on the event thread, to 78 // avoid thread contention. This means that the PseudoTcpChannel cannot go 98 // Signal thread methods 101 PseudoTcpChannel::PseudoTcpChannel(Thread* stream_thread, Session* session) 174 // the worker thread. 224 // Stream thread methods 315 // Worker thread method [all...] |
| /external/javassist/src/main/javassist/ |
| ClassPool.java | [all...] |
| /external/nist-sip/java/gov/nist/javax/sip/parser/ |
| StringMsgParser.java | 699 new Thread(new ParserThread(messages)).start();
|
| /external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
| rebaselineserver.py | 154 # Shutdown has to happen on another thread from the server's thread, 156 threading.Thread(target=lambda: self.server.shutdown()).start()
|
| /frameworks/base/core/java/android/app/ |
| SharedPreferencesImpl.java | 84 new Thread("SharedPreferencesImpl-load") { 182 // thread, since the real read will be in a different 183 // thread and otherwise ignored by StrictMode. 435 mcr, null /* sync write on this thread okay */); 460 // Run this function on the main thread. 481 * thread (which in addition to reducing allocations and 482 * creating a background thread, this has the advantage that 505 // the current thread.
|
| /frameworks/base/core/java/com/android/internal/util/ |
| AsyncChannel.java | 318 new Thread(ca).start(); 705 /** The handler thread */
|
| /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/ |
| ConnectionUtil.java | 638 * Make the current thread sleep. 643 Thread.sleep(sleeptime);
|
| /frameworks/base/media/libstagefright/omx/ |
| OMX.cpp | 39 // This provides the underlying Thread used by CallbackDispatcher. 40 // Note that deriving CallbackDispatcher from Thread does not work. 42 struct OMX::CallbackDispatcherThread : public Thread {
|
| /frameworks/base/media/tests/SoundPoolTest/src/com/android/ |
| SoundPoolTest.java | 67 private final class TestThread extends java.lang.Thread { 321 if (DEBUG) Log.d(LOG_TAG, "Test thread running"); 363 if (DEBUG) Log.d(LOG_TAG, "Test thread exit");
|
| /frameworks/base/services/surfaceflinger/ |
| SurfaceFlinger.h | 90 // thread-safe 152 protected Thread 384 // Can only accessed from the main thread, these members 412 // these are thread safe 427 // only written in the main thread, only read in other threads
|
| /frameworks/base/voip/java/com/android/server/sip/ |
| SipSessionGroup.java | 95 // Limit the size of thread pool to 1 for the order issue when the phone is 97 // stack. Note: The default thread pool size in NIST SIP stack is -1 which is 326 if (DEBUG) Log.d(TAG, "<<<<< got INVITE, thread:" 327 + Thread.currentThread()); 531 new Thread(new Runnable() { 640 // process the command in a new thread 642 new Thread(new Runnable() { [all...] |
| /packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
| BluetoothOppNotification.java | 150 // 1. On the first notification, create the update thread. 152 // 2. Update thread will clear mPendingUpdate. 168 if (V) Log.v(TAG, "previous thread is not finished yet"); 177 private class NotificationUpdateThread extends Thread { 180 super("Notification Update Thread");
|
| /packages/apps/CertInstaller/src/com/android/certinstaller/ |
| CertInstaller.java | 202 Thread.currentThread().interrupt(); 285 // show progress bar and extract certs in a background thread
|
| /packages/apps/Gallery/src/com/android/camera/ |
| Util.java | 417 // the thread will be done before the activity getting destroyed. 420 new Thread(new BackgroundJob(activity, job, dialog, handler)).start();
|
| /packages/apps/Gallery2/src/com/android/gallery3d/app/ |
| AlbumSetDataAdapter.java | 323 private class ReloadTask extends Thread { 363 // big. Because the main thread is not aware of the size
|
| /packages/apps/KeyChain/src/com/android/keychain/ |
| KeyChainActivity.java | 73 // be done on the UI thread. 76 // the KeyStore.state operation is safe to do on the UI thread, it 406 Thread.currentThread().interrupt();
|
| /packages/apps/Phone/src/com/android/phone/ |
| SimContacts.java | 99 private class ImportAllSimContactsThread extends Thread 287 ImportAllSimContactsThread thread = new ImportAllSimContactsThread(); local 299 getString(R.string.cancel), thread); 304 thread.start();
|
| SipCallOptionHandler.java | 416 new Thread(new Runnable() {
|
| /packages/apps/Settings/src/com/android/settings/ |
| SoundSettings.java | 368 new Thread(mRingtoneLookupRunnable).start();
|
| TrustedCredentialsSettings.java | 139 // be careful not to use this on the UI thread since it is does file operations 409 Thread.currentThread().interrupt();
|
| /packages/apps/VideoEditor/src/com/android/videoeditor/ |
| KenBurnsActivity.java | 166 Thread.sleep(30);
|
| /packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/ |
| VideoChatTestActivity.java | 423 Thread.sleep(5000);
|
| /packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
| DownloadService.java | 73 * The thread that updates the internal download list from the content 259 private class UpdateThread extends Thread {
|
| /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
| EmulatorConsole.java | 621 Thread.sleep(WAIT_TIME);
|
| MonitorThread.java | 44 final class MonitorThread extends Thread { 91 * Creates and return the singleton instance of the client monitor thread. 98 * Get singleton instance of the client monitor thread. 204 "Failed to initialize Monitor Thread: " + ioe.getMessage()); 275 // we don't want to have our thread be killed because of any uncaught 282 // we don't want to have our thread be killed because of any uncaught 439 * http://forum.java.sun.com/thread.jspa?threadID=726715&start=0 567 * Tell the thread that something has changed. 574 * Tell the thread to stop. Called from UI thread [all...] |