Searched refs:stop (Results 26 - 50 of 324) sorted by relevance

1234567891011>>

/frameworks/av/cmds/stagefright/
H A Daudioloop.cpp63 writer->stop();
78 player->stop();
96 CHECK_EQ(decoder->stop(), (status_t)OK);
H A DSineSource.cpp23 stop();
39 status_t SineSource::stop() { function in class:android::SineSource
/frameworks/av/include/media/stagefright/
H A DAMRWriter.h40 virtual status_t stop() { return reset(); } function in struct:android::AMRWriter
H A DJPEGSource.h32 virtual status_t stop();
H A DMediaAdapter.h40 virtual status_t stop();
/frameworks/av/libvideoeditor/lvpp/
H A DDummyVideoSource.h38 virtual status_t stop();
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/libvideoeditor/vss/stagefrightshells/src/
H A DMediaBufferPuller.h42 // Release the list of the available buffers, and stop
44 void stop();
52 // a buffer to become available or until stop() is called.
78 bool mAskToStop; // Asks the threads to stop
/frameworks/av/services/audioflinger/
H A DRecordTracks.h36 virtual void 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);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaPlayerStopStateUnitTest.java25 * MediaPlayer.stop() method can be called.
31 * 1. It is valid to call stop() in the following states:
33 * 2. It is invalid to call stop() in the following states:
56 player.stop();
H A DMediaRecorderStopStateUnitTest.java27 * MediaRecorder.stop() method can be called.
35 * 1. It is valid to call stop() in the following states:
37 * 2. It is invalid to call stop() in the following states:
66 recorder.stop();
76 return "stop()";
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
H A DScoAudioTest.java184 mMediaControllers[0].stop();
185 mMediaControllers[1].stop();
273 ImageButton stop = (ImageButton) findViewById(stopButtonId);
277 if (stop != null) {
278 stop.setOnClickListener(this);
289 ImageButton stop = (ImageButton) findViewById(stopButtonId);
293 if (stop != null) {
294 stop.setOnClickListener(this);
303 stop();
310 public void stop() { method in class:ScoAudioTest.SimpleMediaController
394 public void stop() { method in class:ScoAudioTest.SimplePlayerController
476 public void stop() { method in class:ScoAudioTest.SimpleRecordController
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCase.java65 mView.stop();
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DRingtonePlayer.java88 mRingtone.stop();
113 public void stop(IBinder token) {
114 if (LOGD) Log.d(TAG, "stop(token=" + token + ")");
121 client.mRingtone.stop();
155 mAsyncPlayer.stop();
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
H A DService.java64 public void stop() { method in class:Service
/frameworks/av/media/libmedia/
H A DIAudioRecord.cpp72 virtual void stop() function in class:android::BpAudioRecord
103 stop();
/frameworks/base/core/java/android/speech/tts/
H A DAudioPlaybackQueueItem.java94 mPlayer.stop();
102 void stop(boolean isError) { method in class:AudioPlaybackQueueItem
/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/libs/hwui/
H A DUvMapper.h115 static float lerp(float start, float stop, float amount) { argument
116 return start + (stop - start) * amount;
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java142 mSoundPool.stop(id);
164 mSoundPool.stop(id);
191 mSoundPool.stop(id);
217 mSoundPool.stop(id);
232 mSoundPool.stop(id);
237 // stop normal note
239 mSoundPool.stop(normalId);
271 mSoundPool.stop(id);
299 mSoundPool.stop(ids[i]);
327 mSoundPool.stop(i
[all...]
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DSimplePlayer.java84 ImageButton stop = (ImageButton) stopButton;
88 stop.setOnClickListener(this);
102 stop();
159 public void stop() { method in class:SimplePlayer
161 mMediaPlayer.stop();
/frameworks/av/media/libstagefright/
H A DMediaMuxer.cpp128 status_t MediaMuxer::stop() { function in class:android::MediaMuxer
134 if (mTrackList[i]->stop() != OK) {
138 return mWriter->stop();
140 ALOGE("stop() is called in invalid state %d", mState);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DRepeaterSource.cpp77 status_t RepeaterSource::stop() { function in class:android::RepeaterSource
83 mLooper->stop();
95 status_t err = mSource->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

Completed in 476 milliseconds

1234567891011>>