/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/ |
D | WatchDog.java | 31 private Thread mThread; field in WatchDog 51 mThread = new Thread(this); in start() 52 mThread.start(); in start() 58 if (mThread == null) { in stop() 64 mThread.join(); in stop() 68 mThread = null; in stop()
|
/cts/common/device-side/util/src/com/android/compatibility/common/util/ |
D | WatchDog.java | 31 private Thread mThread; field in WatchDog 51 mThread = new Thread(this); in start() 52 mThread.start(); in start() 58 if (mThread == null) { in stop() 64 mThread.join(); in stop() 68 mThread = null; in stop()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/wifi/ |
D | BaseTestCase.java | 37 private Thread mThread; field in BaseTestCase 105 mThread = new Thread( in start() 133 mThread.start(); in start() 140 if (mThread != null) { in stop() 141 mThread.interrupt(); in stop() 142 mThread = null; in stop()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/wifiaware/ |
D | BaseTestCase.java | 35 private Thread mThread; field in BaseTestCase 88 mThread = new Thread( in start() 115 mThread.start(); in start() 122 if (mThread != null) { in stop() 123 mThread.interrupt(); in stop() 124 mThread = null; in stop()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
D | TestCase.java | 58 private Thread mThread; field in TestCase 82 mThread = new Thread(new Runnable() { in start() 107 mThread.start(); in start() 114 if (mThread != null) { in stop() 115 mThread.interrupt(); in stop() 116 mThread = null; in stop()
|
/cts/tests/tests/media/src/android/media/cts/ |
D | MediaCodecTunneledPlayer.java | 61 private Thread mThread; field in MediaCodecTunneledPlayer 76 mThread = new Thread(new Runnable() { in MediaCodecTunneledPlayer() 339 mThread.start(); in startWork() 347 mThread.start(); in startThread() 427 mThread.join(); in reset()
|
D | AudioHelper.java | 201 private Thread mThread; field in AudioHelper.MakeSomethingAsynchronouslyAndLoop 214 mThread = new Thread() in make() 226 mThread.start(); in make() 233 mThread.join(); in join() 239 mThread = null; in join()
|
D | MediaCodecClearKeyPlayer.java | 90 private Thread mThread; field in MediaCodecClearKeyPlayer 148 mThread = new Thread(new Runnable() { in MediaCodecClearKeyPlayer() 515 mThread.start(); in startWork() 521 mThread.start(); in startThread() 549 mThread.join(); in reset()
|
/cts/suite/audio_quality/lib/include/audio/ |
D | RemoteAudio.h | 115 : mThread(thread), in CommandHandler() 132 RemoteAudio& mThread;
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
D | RVCVXCheckAnalyzer.java | 967 private Thread mThread; field in RVCVXCheckAnalyzer.VideoDecoderForOpenCV 1001 mThread = new Thread(this); in start() 1002 mThread.start(); in start() 1013 if (mThread != null) { in stop() 1014 mThread.interrupt(); in stop() 1016 mThread.join(); in stop() 1026 mThread = null; in stop() 1196 mThread = null; in run()
|
D | RVCVRecordActivity.java | 1010 private Thread mThread = null; field in RVCVRecordActivity.RecordProcedureController 1014 mThread = new Thread(this); in RecordProcedureController() 1015 mThread.start(); in RecordProcedureController() 1105 mThread.interrupt(); in quit()
|
/cts/suite/audio_quality/client/src/com/android/cts/audiotest/ |
D | AudioProtocol.java | 45 private Thread mThread = new Thread(new ProtocolServer()); field in AudioProtocol 87 mThread.start(); in start() 106 mThread.interrupt(); // this does not bail out from socket in android in stop() 107 mThread.join(); in stop()
|
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/ |
D | CommandSession.java | 370 private final HandlerThread mThread; 381 mThread = new HandlerThread(mClientId); 382 mThread.start(); 384 null /* broadcastPermission */, new Handler(mThread.getLooper())); 505 mThread.quit();
|
D | ActivityManagerTestBase.java | 1213 private final HandlerThread mThread; 1226 mThread = new HandlerThread("Observer_Thread"); 1227 mThread.start(); 1228 mRunnableHandler = new Handler(mThread.getLooper()); 1262 mThread.quitSafely();
|
/cts/suite/audio_quality/lib/src/audio/ |
D | RemoteAudio.cpp | 343 mThread.mExitRequested = true; in handleMessage() 353 mResult = (mThread.mCmds[message.what - AudioProtocol::ECmdStart]) \ in handleMessage()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/ |
D | ItsService.java | 494 private Thread mThread = null; field in ItsService.SocketWriteRunnable 546 if (mThread == null || mThread.getState() == Thread.State.TERMINATED) { in checkAndStartThread() 547 mThread = new Thread(this); in checkAndStartThread() 549 if (mThread.getState() == Thread.State.NEW) { in checkAndStartThread() 550 mThread.start(); in checkAndStartThread()
|