Searched defs:stop (Results 26 - 50 of 152) sorted by relevance

1234567

/frameworks/av/media/libstagefright/rtsp/
H A DVideoSource.h53 virtual status_t stop() { function in class:android::VideoSource
/frameworks/av/media/libstagefright/wifi-display/source/
H A DRepeaterSource.cpp58 status_t RepeaterSource::stop() { function in class:android::RepeaterSource
64 mLooper->stop();
76 status_t err = mSource->stop();
/frameworks/base/core/java/android/os/
H A DSystemService.java67 /** Request that the init daemon stop a named service. */
68 public static void stop(String name) { method in class:SystemService
69 SystemProperties.set("ctl.stop", name);
/frameworks/base/core/java/android/speech/tts/
H A DAudioPlaybackHandler.java41 private void stop(PlaybackQueueItem item) { method in class:AudioPlaybackHandler
46 item.stop(false);
64 stop(current);
68 public void stop() { method in class:AudioPlaybackHandler
72 stop(mCurrentWorkItem);
88 stop(mCurrentWorkItem);
129 // If stop() or stopForApp() are called between mQueue.take()
H A DFileSynthesisCallback.java55 void stop() { method in class:FileSynthesisCallback
H A DPlaybackSynthesisCallback.java59 // track whether stop() has been called before start(). In all other cases,
82 void stop() { method in class:PlaybackSynthesisCallback
87 if (DBG) Log.d(TAG, "stop()");
95 Log.w(TAG, "stop() called twice");
107 // soon after (see SynthHandler#stop(String).
108 item.stop(wasError);
110 // This happens when stop() or error() were called before start() was.
112 // In all other cases, mAudioTrackHandler.stop() will
151 if (DBG) Log.d(TAG, "stop() called before start(), returning.");
229 if (DBG) Log.d(TAG, "error() [will call stop]");
[all...]
H A DSynthesisPlaybackQueueItem.java102 // OR (b) stop() is called in which case it will return null.
125 void stop(boolean isError) { method in class:SynthesisPlaybackQueueItem
148 // Stop the underlying audio track. This will stop sending
151 mAudioTrack.stop();
188 // would have woken up when stop() is called (if it was blocked) and will
207 // Block if there are no available buffers, and stop() has not
/frameworks/base/core/java/android/widget/
H A DEditText.java86 public void setSelection(int start, int stop) { argument
87 Selection.setSelection(getText(), start, stop);
/frameworks/base/services/java/com/android/server/location/
H A DLocationBasedCountryDetector.java44 * The current query can be stopped by {@link #stop()}
164 LocationBasedCountryDetector.this.stop();
188 LocationBasedCountryDetector.this.stop();
205 public synchronized void stop() { method in class:LocationBasedCountryDetector
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DForwardServer.java63 public synchronized void stop() { method in class:ForwardServer
67 forwarder.stop();
128 recyclable.stop();
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGraphRunner.java34 * to stop(), RESULT_BLOCKED if no filters could run due to lack
90 public abstract void stop(); method in class:GraphRunner
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorSRC.cpp65 stop();
83 status_t VideoEditorSRC::stop() { function in class:android::VideoEditorSRC
84 ALOGV("stop %p(%p)", this, mSource.get());
93 mSource->stop();
145 stop();
191 stop();
242 // We cannot call stop() here because stop() will release the
244 // So just remember the fact and let read() call stop().
/frameworks/av/media/libmedia/
H A DIAudioTrack.cpp77 virtual void stop() function in class:android::BpAudioTrack
187 stop();
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.h85 virtual status_t stop() {return mPlayer->stop();} function in class:android::TestPlayerStub
/frameworks/av/media/libstagefright/
H A DTimedEventQueue.cpp44 stop();
65 void TimedEventQueue::stop(bool flush) { function in class:android::TimedEventQueue
/frameworks/av/media/libstagefright/foundation/
H A DALooper.cpp74 stop();
125 status_t ALooper::stop() { function in class:android::ALooper
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp57 status_t AnotherPacketSource::stop() { function in class:android::AnotherPacketSource
/frameworks/base/core/java/android/text/method/
H A DMultiTapKeyListener.java235 Object what, int s, int e, int start, int stop) {
234 onSpanChanged(Spannable buf, Object what, int s, int e, int start, int stop) argument
/frameworks/base/core/java/android/webkit/
H A DDeviceMotionService.java55 public void stop() { method in class:DeviceMotionService
H A DDeviceOrientationService.java60 public void stop() { method in class:DeviceOrientationService
H A DGeolocationService.java72 public void stop() { method in class:GeolocationService
/frameworks/base/services/java/com/android/server/am/
H A DDeviceMonitor.java74 stop();
201 private synchronized void stop() { method in class:DeviceMonitor
/frameworks/base/services/java/com/android/server/wm/
H A DViewServer.java95 * @see #stop()
122 boolean stop() { method in class:ViewServer
130 Slog.w(LOG_TAG, "Could not stop all view server threads");
152 * @see #stop()
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
H A DConnectionHandler.java72 ConnectionHandler.this.stop();
139 public void stop() { method in class:ConnectionHandler
147 /** This will stop the while loop in the run method */
/frameworks/support/volley/src/com/android/volley/
H A DRequestQueue.java132 stop(); // Make sure any currently running dispatchers are stopped.
149 public void stop() { method in class:RequestQueue

Completed in 2161 milliseconds

1234567