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

/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.java68 * {@link #quit()}.
107 * {@link #quit()} to end the loop.
205 * Any attempt to post messages to the queue after the looper is asked to quit will fail.
215 public void quit() { method in class:Looper
216 mQueue.quit(false);
227 * Any attempt to post messages to the queue after the looper is asked to quit will fail.
232 mQueue.quit(true);
H A DMessageQueue.java33 // True if the message queue can be quit.
128 // Return here if the message loop has already quit and been disposed.
129 // This can happen if the application tries to restart a looper after quit
178 // Process the quit message now that all pending messages have been handled.
232 void quit(boolean safe) { method in class:MessageQueue
234 throw new IllegalStateException("Main thread not allowed to 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/volley/src/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.java65 * Forces this dispatcher to quit immediately. If any requests are still in
68 public void quit() { method in class:NetworkDispatcher
90 // We may have been interrupted because it was time to quit.
/frameworks/av/media/libmedia/
H A DSoundPoolThread.cpp49 void SoundPoolThread::quit() { function in class:android::SoundPoolThread
58 ALOGV("return from quit");
72 quit();
H A DSoundPool.cpp81 mDecodeThread->quit();
82 quit();
168 void SoundPool::quit() function in class:android::SoundPool
174 ALOGV("return from 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();
487 public void quit() { method in class:TextToSpeechService.SynthHandler
489 getLooper().quit();
541 Log.w(TAG, "SynthThread has quit");
/frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/
H A DBatteryWaster.java137 mThread.quit();
184 public void quit() { method in class:BatteryWaster.SpinThread
/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.java908 mGLThreadManager.quit();
974 public void quit() { method in class:RequestThreadManager
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseCursorTest.java265 boolean quit = false; field in class:DatabaseCursorTest.TestObserver
281 quit = true;
282 Looper.myLooper().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/core/java/com/android/internal/util/
H A DStateMachine.java85 * <p>If it is desirable to completely stop the state machine call <code>quit</code> or
676 /** true if StateMachine has quit */
763 * State entered when a valid quit message is handled.
877 * see if the last transition was to quit or halt.
898 * Cleanup all the static variables and the looper after the SM has been quit.
902 // If we made the thread then quit looper which stops the thread.
903 getLooper().quit();
1201 /** @see StateMachine#quit() */
1202 private final void quit() { method in class:StateMachine.SmHandler
1203 if (mDbg) mSm.log("quit
1881 protected final void quit() { method in class:StateMachine
[all...]

Completed in 2240 milliseconds