/packages/apps/Mms/src/com/android/mms/transaction/ |
NotificationPlayer.java | 205 mThread = null; 233 private CmdThread mThread; 308 if (mThread == null) { 310 mThread = new CmdThread(); 311 mThread.start(); 319 * sound to play, but if the CPU turns off before mThread gets to work, it won't. The 329 if (mWakeLock != null || mThread != null) { 333 + " mThread=" + mThread);
|
ReadRecTransaction.java | 50 private Thread mThread; 71 mThread = new Thread(this, "ReadRecTransaction"); 72 mThread.start();
|
/frameworks/av/include/media/stagefright/ |
AACWriter.h | 57 pthread_t mThread;
|
AMRWriter.h | 55 pthread_t mThread;
|
/system/core/include/utils/ |
Thread.h | 96 thread_id_t mThread;
|
/dalvik/dx/tests/098-dex-jsr-ret-throw/ |
ViewDebug$ViewServer.class | |
/frameworks/base/core/java/android/view/textservice/ |
SpellCheckerSession.java | 235 private HandlerThread mThread; 318 if (mThread != null) { 319 mThread.quit(); 321 mThread = null; 330 if (session.asBinder() instanceof Binder && mThread == null) { 333 mThread = new HandlerThread("SpellCheckerSession", 335 mThread.start(); 336 mAsyncHandler = new Handler(mThread.getLooper()) {
|
/frameworks/base/services/java/com/android/server/ |
VibratorService.java | 67 volatile VibrateThread mThread; 319 if (mThread != null) { 320 synchronized (mThread) { 321 mThread.mDone = true; 322 mThread.notify(); 324 mThread = null; 360 // mThread better be null here. doCancelVibrate should always be 362 mThread = new VibrateThread(vib); 363 mThread.start(); 583 if (mThread == this) [all...] |
/frameworks/native/services/surfaceflinger/ |
DispSync.cpp | 300 mThread = new DispSyncThread(); 301 mThread->run("DispSync", PRIORITY_URGENT_DISPLAY + PRIORITY_MORE_FAVORABLE); 382 return mThread->hasAnyEventListeners(); 395 return mThread->addEventListener(phase, callback); 400 return mThread->removeEventListener(callback); 407 mThread->updateModel(mPeriod, mPhase); 446 mThread->updateModel(mPeriod, mPhase);
|
DispSync.h | 140 // mThread is the thread from which all the callbacks are called. 141 sp<DispSyncThread> mThread;
|
/frameworks/base/core/java/com/android/internal/os/ |
TransferPipe.java | 41 final Thread mThread;; 57 mThread = new Thread(this, "TransferPipe"); 139 mThread.start(); 145 mThread.interrupt(); 226 if (mThread.isInterrupted()) {
|
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/ |
Transport.java | 53 private ReaderThread mThread; 86 if (mThread == null) { 93 mThread.quit(); 168 mThread = new ReaderThread(); 169 mThread.start();
|
/cts/suite/audio_quality/lib/include/audio/ |
RemoteAudio.h | 115 : mThread(thread), 132 RemoteAudio& mThread;
|
/frameworks/base/core/java/android/app/ |
Service.java | [all...] |
/development/samples/training/NsdChat/src/com/example/android/nsdchat/ |
ChatConnection.java | 119 Thread mThread = null; 122 mThread = new Thread(new ServerThread()); 123 mThread.start(); 127 mThread.interrupt();
|
/frameworks/av/include/media/ |
JetPlayer.h | 119 sp<JetPlayerThread> mThread;
|
/frameworks/av/include/media/stagefright/foundation/ |
ALooper.h | 75 sp<LooperThread> mThread;
|
ANetworkSession.h | 101 sp<Thread> mThread;
|
/packages/apps/SpeechRecorder/src/com/android/speechrecorder/ |
SpeechRecorderActivity.java | 63 private Thread mThread; 184 mThread = new Thread() { 198 mThread.start(); 212 mThread.join();
|
/frameworks/base/services/java/com/android/server/usb/ |
UsbDebuggingManager.java | 56 private Thread mThread; 164 mThread = new Thread(UsbDebuggingManager.this, TAG); 165 mThread.start(); 177 mThread.join(); 181 mThread = null;
|
/system/core/libutils/ |
Threads.cpp | 668 mThread(thread_id_t(-1)), 700 mThread = thread_id_t(-1); 710 this, name, priority, stack, &mThread); 713 this, name, priority, stack, &mThread); 719 mThread = thread_id_t(-1); 781 self->mThread = thread_id_t(-1); 808 if (mThread == getThreadId()) { 832 if (mThread == getThreadId()) { 860 pthread_t pthread = android_thread_id_t_to_pthread(mThread);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppObexClientSession.java | 66 private ClientThread mThread; 89 mThread = new ClientThread(mContext, mTransport, numShares); 90 mThread.start(); 95 if (mThread != null) { 98 mThread.interrupt(); 100 mThread.join(); 101 mThread = null; 110 mThread.addShare(share);
|
/frameworks/av/media/libmediaplayerservice/ |
MidiFile.h | 108 sp<MidiFileThread> mThread;
|
/frameworks/av/media/libstagefright/include/ |
TimedEventQueue.h | 130 pthread_t mThread;
|
/frameworks/av/services/audioflinger/ |
Effects.h | 92 void setThread(const wp<ThreadBase>& thread) { mThread = thread; } 93 const wp<ThreadBase>& thread() { return mThread; } 140 wp<ThreadBase> mThread; // parent thread 322 friend class AudioFlinger; // for mThread, mEffects 348 wp<ThreadBase> mThread; // parent mixer thread
|