Searched defs:stop (Results 76 - 100 of 219) sorted by relevance

123456789

/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp88 virtual status_t stop() { function in class:DummySource
324 err = writer->stop();
/frameworks/av/include/media/stagefright/
H A DCameraSource.h97 virtual status_t stop() { return reset(); } function in class:android::CameraSource
103 * Must call this method before stop().
H A DMPEG4Writer.h46 virtual status_t stop() { return reset(); } function in class:android::MPEG4Writer
/frameworks/av/media/libmedia/
H A Dmediarecorder.cpp501 status_t MediaRecorder::stop() function in class:android::MediaRecorder
503 ALOGV("stop");
509 ALOGE("stop called in an invalid state: %d", mCurrentState);
513 status_t ret = mMediaRecorder->stop();
515 ALOGE("stop failed: %d", ret);
521 // stop and reset are semantically different.
573 ALOGE("stop called in an invalid state: %d", mCurrentState);
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp242 status_t MediaRecorderClient::stop() function in class:android::MediaRecorderClient
244 ALOGV("stop");
250 return mRecorder->stop();
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerSource.h69 virtual void stop() {} function in struct:android::NuPlayer::Source
/frameworks/av/media/libstagefright/
H A DAACExtractor.cpp45 virtual status_t stop();
253 stop();
274 status_t AACSource::stop() { function in class:android::AACSource
H A DAMRExtractor.cpp43 virtual status_t stop();
226 stop();
242 status_t AMRSource::stop() { function in class:android::AMRSource
H A DDRMExtractor.cpp44 virtual status_t stop();
118 status_t DRMSource::stop() { function in class:android::DRMSource
119 return mOriginalMediaSource->stop();
H A DJPEGSource.cpp68 stop();
87 status_t JPEGSource::stop() { function in class:android::JPEGSource
H A DMidiExtractor.cpp44 virtual status_t stop();
86 stop();
100 status_t MidiSource::stop() function in class:android::MidiSource
102 ALOGV("MidiSource::stop");
H A DSimpleDecodingSource.cpp86 looper->stop();
104 mLooper->stop();
129 status_t SimpleDecodingSource::stop() { function in class:SimpleDecodingSource
141 status_t res1 = mCodec->stop();
145 status_t res2 = mSource->stop();
262 // don't stop on EOS, but report error or EOS on stop
307 // abort read on stop
H A DSurfaceMediaSource.cpp203 status_t SurfaceMediaSource::stop() function in class:android::SurfaceMediaSource
205 ALOGV("stop");
461 // and that it should stop the recording
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DAACEncoder.cpp132 stop();
165 status_t AACEncoder::stop() { function in class:android::AACEncoder
180 ALOGW("Call stop() when encoder has not started");
184 mSource->stop();
/frameworks/av/media/libstagefright/foundation/
H A DALooper.cpp80 stop();
132 status_t ALooper::stop() { function in class:android::ALooper
/frameworks/base/core/java/android/app/
H A DExitTransitionCoordinator.java269 public void stop() { method in class:ExitTransitionCoordinator
/frameworks/base/core/java/android/speech/tts/
H A DBlockingAudioTrack.java58 * {@link AudioTrack#stop()} to send pending buffers to the mixer, and slightly
70 // Need to be seen by stop() which can be called from another thread. mAudioTrack will be
107 public void stop() { method in class:BlockingAudioTrack
110 mAudioTrack.stop();
141 // For "small" audio tracks, we have to stop() them to make them mixable,
154 track.stop();
243 // In this case we would have called AudioTrack#stop() to flush
/frameworks/base/core/java/android/text/
H A DSelection.java65 * to <code>stop</code>.
67 public static void setSelection(Spannable text, int start, int stop) { argument
70 // stop = pin(stop, 0, len);
75 if (ostart != start || oend != stop) {
78 text.setSpan(SELECTION_END, stop, stop,
/frameworks/base/core/java/android/util/
H A DMathUtils.java155 public static float lerp(float start, float stop, float amount) { argument
156 return start + (stop - start) * amount;
180 public static float norm(float start, float stop, float value) { argument
181 return (value - start) / (stop - start);
/frameworks/base/core/java/android/widget/
H A DChronometer.java213 * make sure that each start() call has a reciprocal call to {@link #stop}.
227 public void stop() { method in class:Chronometer
233 * The same as calling {@link #start} or {@link #stop}.
H A DSpellChecker.java174 mSpellParsers[i].stop();
524 public void stop() { method in class:SpellChecker.SpellParser
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedRotateDrawable.java76 * The animation will run until {@link #stop()} is called. Calling this
79 * @see #stop()
95 public void stop() { method in class:AnimatedRotateDrawable
H A DAnimationDrawable.java149 * @see #stop()
170 public void stop() { method in class:AnimationDrawable
/frameworks/base/media/java/android/media/
H A DMediaMuxer.java65 * muxer.stop();
243 public void stop() { method in class:MediaMuxer
248 throw new IllegalStateException("Can't stop due to wrong state.");
485 stop();
H A DRingtone.java357 public void stop() { method in class:Ringtone
362 mRemotePlayer.stop(mRemoteToken);

Completed in 668 milliseconds

123456789