Searched defs:stop (Results 51 - 75 of 152) sorted by relevance

1234567

/frameworks/base/media/java/android/media/
H A DAsyncPlayer.java104 Log.w(mTag, "Notification stop delayed by " + delay + "msecs");
106 mPlayer.stop();
155 * Calling this before another audio file is done playing will stop
183 public void stop() { method in class:AsyncPlayer
185 // This check allows stop to be called multiple times without starting
207 * We want to hold a wake lock while we do the prepare and play. The stop probably is
H A DRingtone.java242 public void stop() { method in class:Ringtone
247 mRemotePlayer.stop(mRemoteToken);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DAsyncRunner.java167 * completes running a graph, whether the completion is due to a stop() call
210 * been completed. Calling stop will close the filter graph. */
212 synchronized public void stop() { method in class:AsyncRunner
H A DSyncRunner.java149 public void stop() { method in class:SyncRunner
213 mTimer.stop(filter.getName());
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp94 status_t SimplePlayer::stop() { function in class:android::SimplePlayer
H A Drecordvideo.cpp80 virtual status_t stop() { function in class:DummySource
299 err = writer->stop();
/frameworks/av/include/media/stagefright/
H A DCameraSource.h82 virtual status_t stop() { return reset(); } function in class:android::CameraSource
88 * Must call this method before stop().
H A DMPEG4Writer.h40 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.
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp245 status_t MediaRecorderClient::stop() function in class:android::MediaRecorderClient
247 ALOGV("stop");
253 return mRecorder->stop();
H A DMidiFile.cpp230 status_t MidiFile::stop() function in class:android::MidiFile
232 ALOGV("MidiFile::stop");
533 mAudioSink->stop();
H A DStagefrightPlayer.cpp93 status_t StagefrightPlayer::stop() { function in class:android::StagefrightPlayer
94 ALOGV("stop");
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp54 mLooper->stop();
155 status_t NuPlayerDriver::stop() { function in class:android::NuPlayerDriver
H A DRTSPSource.cpp61 mLooper->stop();
88 void NuPlayer::RTSPSource::stop() { function in class:android::NuPlayer::RTSPSource
/frameworks/av/media/libstagefright/
H A DAMRExtractor.cpp43 virtual status_t stop();
220 stop();
236 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 DSurfaceMediaSource.cpp199 status_t SurfaceMediaSource::stop() function in class:android::SurfaceMediaSource
201 ALOGV("stop");
459 // 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/mpeg2ts/
H A DMPEG2TSExtractor.cpp47 virtual status_t stop();
77 status_t MPEG2TSSource::stop() { function in class:android::MPEG2TSSource
78 return mImpl->stop();
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextSRTSource.cpp61 status_t TimedTextSRTSource::stop() { function in class:android::TimedTextSRTSource
/frameworks/av/media/libstagefright/wifi-display/source/
H A DConverter.cpp388 int16_t *stop = (int16_t *)(buffer->data() + buffer->size()); local
389 while (ptr < stop) {
/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
108 public void stop() { method in class:BlockingAudioTrack
111 mAudioTrack.stop();
142 // For "small" audio tracks, we have to stop() them to make them mixable,
155 track.stop();
249 // 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.java147 public static float lerp(float start, float stop, float amount) { argument
148 return start + (stop - start) * amount;
151 public static float norm(float start, float stop, float value) { argument
152 return (value - start) / (stop - start);

Completed in 204 milliseconds

1234567