HomeSort by relevance Sort by last modified time
    Searched defs:mThread (Results 26 - 50 of 63) sorted by null

12 3

  /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/base/services/java/com/android/server/wm/
ViewServer.java 68 private Thread mThread;
100 if (mThread != null) {
105 mThread = new Thread(this, "Remote View Server [port=" + mPort + "]");
107 mThread.start();
123 if (mThread != null) {
125 mThread.interrupt();
134 mThread = null;
156 return mThread != null && mThread.isAlive();
163 while (Thread.currentThread() == mThread) {
    [all...]
  /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();
  /frameworks/av/include/media/stagefright/
AACWriter.h 57 pthread_t mThread;
MPEG4Writer.h 139 pthread_t mThread; // Thread id for the writer
  /frameworks/av/include/media/stagefright/foundation/
ANetworkSession.h 101 sp<Thread> mThread;
  /frameworks/native/services/surfaceflinger/
DispSync.h 140 // mThread is the thread from which all the callbacks are called.
141 sp<DispSyncThread> 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/base/media/java/android/media/
AsyncPlayer.java 121 mThread = null;
131 private Thread mThread;
199 if (mThread == null) {
201 mThread = new Thread();
202 mThread.start();
210 * sound to play, but if the CPU turns off before mThread gets to work, it won't. The
220 if (mWakeLock != null || mThread != null) {
224 + " mThread=" + mThread);
  /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/media/tests/SoundPoolTest/src/com/android/
SoundPoolTest.java 42 private TestThread mThread;
396 mThread = new TestThread();
397 mThread.start();
404 mThread.quit();
405 mThread = null;
  /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;
  /cts/suite/audio_quality/client/src/com/android/cts/audiotest/
AudioProtocol.java 45 private Thread mThread = new Thread(new ProtocolServer());
87 mThread.start();
106 mThread.interrupt(); // this does not bail out from socket in android
107 mThread.join();
  /cts/suite/audio_quality/lib/include/audio/
RemoteAudio.h 115 : mThread(thread),
132 RemoteAudio& mThread;
  /frameworks/av/include/media/
JetPlayer.h 119 sp<JetPlayerThread> mThread;
  /frameworks/av/media/libmediaplayerservice/
MidiFile.h 108 sp<MidiFileThread> mThread;
  /frameworks/av/media/libstagefright/include/
TimedEventQueue.h 129 pthread_t mThread;
  /system/netd/
MDnsSdListener.h 98 pthread_t mThread;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/media/
NotificationPlayer.java 213 mThread = null;
246 private CmdThread mThread;
318 if (mThread == null) {
320 mThread = new CmdThread();
321 mThread.start();
329 * sound to play, but if the CPU turns off before mThread gets to work, it won't. The
339 if (mWakeLock != null || mThread != null) {
343 + " mThread=" + mThread);
  /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);
  /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/testing/uiautomator_test_libraries/src/com/android/uiautomator/platform/
JankTestBase.java 58 protected Thread mThread = null;
208 mThread = new Thread(new SystraceTracker(mTraceTime, outputFile));
209 mThread.start();
217 if (mThread != null) {
219 mThread.join();
  /dalvik/dx/tests/098-dex-jsr-ret-throw/
ViewDebug$ViewServer.class 
  /frameworks/av/services/audioflinger/
TrackBase.h 115 const wp<ThreadBase> mThread;
  /frameworks/base/core/java/android/os/
Looper.java 61 final Thread mThread;
191 mThread = Thread.currentThread();
199 return Thread.currentThread() == mThread;
284 return mThread;
306 pw.println("mThread=" + mThread);

Completed in 1261 milliseconds

12 3