Searched defs:quit (Results 1 - 19 of 19) sorted by path

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DGLThreadManager.java172 public void quit() { method in class:GLThreadManager
233 * to {@link #setConfigurationAndWait(java.util.Collection)}, after {@link #quit()}, or
H A DRequestThreadManager.java951 mGLThreadManager.quit();
1017 public void quit() { method in class:RequestThreadManager
/frameworks/base/core/java/android/os/
H A DHandlerThread.java94 * Any attempt to post messages to the queue after the looper is asked to quit will fail.
102 * @return True if the looper looper has been asked to quit or false if the
107 public boolean quit() { method in class:HandlerThread
110 looper.quit();
123 * Any attempt to post messages to the queue after the looper is asked to quit will fail.
128 * Otherwise the looper is asked to quit and true is returned.
131 * @return True if the looper looper has been asked to quit or false if the
H A DLooper.java81 * {@link #quit()}.
121 * {@link #quit()} to end the loop.
233 * Any attempt to post messages to the queue after the looper is asked to quit will fail.
243 public void quit() { method in class:Looper
244 mQueue.quit(false);
255 * Any attempt to post messages to the queue after the looper is asked to quit will fail.
260 mQueue.quit(true);
H A DMessageQueue.java42 // True if the message queue can be quit.
308 // Return here if the message loop has already quit and been disposed.
309 // This can happen if the application tries to restart a looper after quit
359 // Process the quit message now that all pending messages have been handled.
413 void quit(boolean safe) { method in class:MessageQueue
415 throw new IllegalStateException("Main thread not allowed to quit.");
/frameworks/base/core/java/android/speech/tts/
H A DAudioPlaybackHandler.java86 public void quit() { method in class:AudioPlaybackHandler
H A DTextToSpeechService.java152 mSynthHandler.quit();
154 mAudioPlaybackHandler.quit();
525 public void quit() { method in class:TextToSpeechService.SynthHandler
527 getLooper().quit();
583 Log.w(TAG, "SynthThread has quit");
/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java86 * <p>If it is desirable to completely stop the state machine call <code>quit</code> or
681 /** true if StateMachine has quit */
768 * State entered when a valid quit message is handled.
890 * see if the last transition was to quit or halt.
911 * Cleanup all the static variables and the looper after the SM has been quit.
915 // If we made the thread then quit looper which stops the thread.
916 getLooper().quit();
1214 /** @see StateMachine#quit() */
1215 private final void quit() { method in class:StateMachine.SmHandler
1216 if (mDbg) mSm.log("quit
1950 protected final void quit() { method in class:StateMachine
[all...]
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseCursorTest.java266 boolean quit = false; field in class:DatabaseCursorTest.TestObserver
282 quit = true;
283 Looper.myLooper().quit();
/frameworks/base/core/tests/coretests/src/android/os/
H A DHandlerTester.java36 quit();
75 quit();
81 private void quit() { method in class:HandlerTester
82 mLooper.quit();
H A DTestHandlerThread.java51 mLooper.quit();
68 quit();
76 quit();
98 private void quit() { method in class:TestHandlerThread
/frameworks/base/media/jni/soundpool/
H A DSoundPool.cpp85 mDecodeThread->quit();
86 quit();
172 void SoundPool::quit() function in class:android::SoundPool
178 ALOGV("return from quit");
H A DSoundPoolThread.cpp49 void SoundPoolThread::quit() { function in class:android::SoundPoolThread
58 ALOGV("return from quit");
72 quit();
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java383 public void quit() { method in class:SoundPoolTest.TestThread
391 if (DEBUG) Log.d(LOG_TAG, "quit");
404 mThread.quit();
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
H A DTransport.java93 mThread.quit();
378 public void quit() { method in class:Transport.ReaderThread
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
H A DDisplaySourceService.java145 mVirtualDisplayThread.quit();
223 public void quit() { method in class:DisplaySourceService.VirtualDisplayThread
/frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/
H A DBatteryWaster.java137 mThread.quit();
184 public void quit() { method in class:BatteryWaster.SpinThread
/frameworks/volley/src/main/java/com/android/volley/
H A DCacheDispatcher.java70 * Forces this dispatcher to quit immediately. If any requests are still in
73 public void quit() { method in class:CacheDispatcher
150 // We may have been interrupted because it was time to quit.
H A DNetworkDispatcher.java66 * Forces this dispatcher to quit immediately. If any requests are still in
69 public void quit() { method in class:NetworkDispatcher
92 // We may have been interrupted because it was time to quit.

Completed in 672 milliseconds