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

/frameworks/base/core/java/android/os/
H A DHandlerThread.java88 * Ask the currently running looper to quit. If the thread has not
91 * quit and true is returned.
93 public boolean quit() { method in class:HandlerThread
96 looper.quit();
H A DLooper.java70 * {@link #quit()}.
109 * {@link #quit()} to end the loop.
199 public void quit() { method in class:Looper
200 mQueue.quit();
H A DMessageQueue.java33 // True if the message queue can be quit.
213 final void quit() { method in class:MessageQueue
215 throw new RuntimeException("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/support/volley/src/com/android/volley/
H A DCacheDispatcher.java71 * Forces this dispatcher to quit immediately. If any requests are still in
74 public void quit() { method in class:CacheDispatcher
151 // We may have been interrupted because it was time to quit.
H A DNetworkDispatcher.java63 * Forces this dispatcher to quit immediately. If any requests are still in
66 public void quit() { method in class:NetworkDispatcher
80 // 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.java118 mSynthHandler.quit();
120 mAudioPlaybackHandler.quit();
291 public void quit() { method in class:TextToSpeechService.SynthHandler
293 getLooper().quit();
336 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/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.java371 public void quit() { method in class:SoundPoolTest.TestThread
379 if (DEBUG) Log.d(LOG_TAG, "quit");
392 mThread.quit();
/frameworks/av/libvideoeditor/lvpp/
H A DNativeWindowRenderer.cpp158 bool quit = false; local
159 while (!quit) {
176 quit = true;
183 ALOGD("quit");
/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java83 * <p>If it is desirable to completely stop the state machine call <code>quit</code> or
736 * State entered when a valid quit message is handled.
817 * see if the last transition was to quit or halt.
838 * Cleanup all the static variables and the looper after the SM has been quit.
842 // If we made the thread then quit looper which stops the thread.
843 getLooper().quit();
1152 /** @see StateMachine#quit() */
1153 private final void quit() { method in class:StateMachine.SmHandler
1154 if (mDbg) Log.d(TAG, "quit:");
1164 /** Validate that the message was sent by quit o
1590 protected final void quit() { method in class:StateMachine
[all...]

Completed in 205 milliseconds