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

1234567891011>>

/frameworks/base/services/tests/servicestests/src/com/android/server/location/
H A DComprehensiveCountryDetectorTest.java68 public void stop() {
159 countryDetector.stop();
183 countryDetector.stop();
203 countryDetector.stop();
222 countryDetector.stop();
248 countryDetector.stop();
264 countryDetector.stop();
/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
H A Drecord.cpp73 virtual status_t stop() {
239 err = writer->stop();
259 err = encoder->stop();
284 err = source->stop();
316 player->stop();
348 encoder->stop();
/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();
/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/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/tests/DumpRenderTree2/src/com/android/dumprendertree2/scriptsupport/
H A DStarter.java77 ForwarderManager.getForwarderManager().stop();
/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/media/
H A DRingtonePlayer.java89 mRingtone.stop();
114 public void stop(IBinder token) {
115 if (LOGD) Slog.d(TAG, "stop(token=" + token + ")");
122 client.mRingtone.stop();
156 mAsyncPlayer.stop();
/frameworks/av/media/libmedia/
H A DIAudioRecord.cpp60 virtual void stop() function in class:android::BpAudioRecord
102 stop();
/frameworks/base/core/java/android/speech/tts/
H A DAudioPlaybackQueueItem.java94 mPlayer.stop();
102 void stop(boolean isError) { method in class:AudioPlaybackQueueItem
H A DITextToSpeechService.aidl87 int stop(in IBinder callingInstance);
/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/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java142 mSoundPool.stop(id);
164 mSoundPool.stop(id);
191 mSoundPool.stop(id);
216 mSoundPool.stop(id);
232 mSoundPool.stop(id);
234 // stop normal note
235 mSoundPool.stop(normalId);
263 mSoundPool.stop(id);
287 mSoundPool.stop(ids[i]);
315 mSoundPool.stop(i
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardFaceUnlockView.java91 mBiometricUnlock.stop();
100 mBiometricUnlock.stop();
171 mBiometricUnlock.stop(); // It shouldn't be running but calling this can't hurt.
188 // We need to stop the biometric unlock when a phone call comes in
203 mBiometricUnlock.stop();
221 mBiometricUnlock.stop();
/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/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/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/av/media/libmediaplayerservice/
H A DTestPlayerStub.h85 virtual status_t stop() {return mPlayer->stop();} function in class:android::TestPlayerStub

Completed in 2723 milliseconds

1234567891011>>