Searched defs:stop (Results 1 - 25 of 127) sorted by relevance

123456

/frameworks/base/core/java/android/os/
H A DSystemService.java27 /** Request that the init daemon stop a named service. */
28 public static void stop(String name) { method in class:SystemService
29 SystemProperties.set("ctl.stop", name);
/frameworks/base/core/java/android/speech/tts/
H A DAbstractSynthesisCallback.java33 abstract void stop(); method in class:AbstractSynthesisCallback
H A DBlockingMediaPlayer.java65 * failed or {@link #stop} was called before the playback finished.
94 public void stop() { method in class:BlockingMediaPlayer
139 mPlayer.stop();
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).
115 // This happens when stop() or error() were called before start() was.
117 // In all other cases, mAudioTrackHandler.stop() will
156 if (DBG) Log.d(TAG, "stop() called before start(), returning.");
231 if (DBG) Log.d(TAG, "error() [will call stop]");
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatable.java31 void stop(); method in interface:Animatable
/frameworks/base/media/libmediaplayerservice/nuplayer/
H A DNuPlayerSource.h31 virtual void stop() {} function in struct:android::NuPlayer::Source
/frameworks/base/media/libstagefright/tests/
H A DDummyRecorder.cpp57 status_t DummyRecorder::stop() { function in class:android::DummyRecorder
61 mSource->stop();
/frameworks/base/services/input/
H A DInputManager.cpp45 stop();
71 status_t InputManager::stop() { function in class:android::InputManager
74 LOGW("Could not stop InputReader thread due to error %d.", result);
79 LOGW("Could not stop InputDispatcher thread due to error %d.", result);
/frameworks/base/services/java/com/android/server/location/
H A DCountryDetectorBase.java65 public abstract void stop(); method in class:CountryDetectorBase
H A DLocationBasedCountryDetector.java44 * The current query can be stopped by {@link #stop()}
162 LocationBasedCountryDetector.this.stop();
186 LocationBasedCountryDetector.this.stop();
203 public synchronized void stop() { method in class:LocationBasedCountryDetector
/frameworks/base/core/java/android/widget/
H A DEditText.java84 public void setSelection(int start, int stop) { argument
85 Selection.setSelection(getText(), start, stop);
/frameworks/base/libs/utils/
H A DTimers.cpp89 void DurationTimer::stop(void) function in class:DurationTimer
105 long long stop = ((long long) ptv1->tv_sec) * 1000000LL + local
109 return stop - start;
/frameworks/base/media/libmedia/
H A DIAudioRecord.cpp58 virtual void stop() function in class:android::BpAudioRecord
98 stop();
H A DIAudioTrack.cpp62 virtual void stop() function in class:android::BpAudioTrack
138 stop();
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DForwarder.java57 public void stop() { method in class:Forwarder
H A DForwardServer.java63 public synchronized void stop() { method in class:ForwardServer
67 forwarder.stop();
128 recyclable.stop();
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
H A DForwarderManager.java27 * A simple class to start and stop Forwarders running on some ports.
110 public synchronized void stop() { method in class:ForwarderManager
112 Log.w(LOG_TAG, "stop(): ForwarderManager already stopped! NOOP.");
/frameworks/base/cmds/stagefright/
H A DSineSource.cpp23 stop();
39 status_t SineSource::stop() { function in class:android::SineSource
/frameworks/base/media/libstagefright/
H A DMediaSourceSplitter.cpp85 status_t MediaSourceSplitter::stop(int clientId) { function in class:android::MediaSourceSplitter
88 LOGV("stop client (%d)", clientId);
94 status_t err = mSource->stop();
217 status_t MediaSourceSplitter::Client::stop() { function in class:android::MediaSourceSplitter::Client
218 return mSplitter->stop(mClientId);
H A DVideoSourceDownSampler.cpp101 status_t VideoSourceDownSampler::stop() { function in class:android::VideoSourceDownSampler
102 LOGV("stop");
103 return mRealVideoSource->stop();
/frameworks/base/media/libstagefright/rtsp/
H A DVideoSource.h53 virtual status_t stop() { function in class:android::VideoSource
/frameworks/media/libvideoeditor/lvpp/
H A DDummyAudioSource.cpp126 status_t DummyAudioSource::stop() { function in class:android::DummyAudioSource
129 LOG2("DummyAudioSource::stop START");
135 LOG2("DummyAudioSource::stop END");
/frameworks/base/core/java/android/text/method/
H A DMultiTapKeyListener.java231 Object what, int s, int e, int start, int stop) {
230 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

Completed in 403 milliseconds

123456