Searched refs:stop (Results 76 - 100 of 303) sorted by last modified time

1234567891011>>

/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/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/libs/androidfw/
H A DAssetManager.cpp1672 timer.stop();
/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 DAudioRecord.java348 stop();
553 public void stop() method in class:AudioRecord
556 throw(new IllegalStateException("stop() called on an uninitialized AudioRecord."));
559 // stop recording
H A DAudioService.java3242 mp.stop();
3961 // attempt to stop music playback for background user
4973 // if we had a display before, stop monitoring its death
5255 // stop monitoring the old client's death
5318 // stop monitoring its death
5372 // we had a display before, stop monitoring its death
5406 // if we had a display before, stop monitoring its death
5448 // if we had a display before, stop monitoring its death
H A DAudioTrack.java496 // even though native_release() stops the native AudioTrack, we need to stop
499 stop();
894 * When used on an instance created in {@link #MODE_STREAM} mode, audio will stop playing
895 * after the last buffer that was written has been played. For an immediate stop, use
900 public void stop() method in class:AudioTrack
903 throw(new IllegalStateException("stop() called on uninitialized AudioTrack."));
906 // stop playing
955 * returns. This function is thread safe with respect to {@link #stop} calls,
991 * returns. This function is thread safe with respect to {@link #stop} calls,
H A DIRingtonePlayer.aidl28 void stop(IBinder token);
H A DMediaCodec.java57 * codec.stop();
115 * for this a full stop(), configure(), start() cycle is necessary.
275 public native final void stop(); method in class:MediaCodec
H A DMediaPlayer.java97 * {@link #stop()}, {@link #seekTo(int)}, {@link #prepare()} or
229 * <li>Calling {@link #stop()} stops playback and causes a
237 * <li>Calling {@link #stop()} has no effect on a MediaPlayer
459 * <tr><td>stop </p></td>
1036 public void stop() throws IllegalStateException { method in class:MediaPlayer
H A DMediaRecorder.java48 * recorder.stop();
698 * application, if no valid audio/video data has been received when stop()
699 * is called. This happens if stop() is called immediately after
706 public native void stop() throws IllegalStateException; method in class:MediaRecorder
H A DRingtone.java242 public void stop() { method in class:Ringtone
247 mRemotePlayer.stop(mRemoteToken);
H A DRingtoneManager.java297 * Whether retrieving another {@link Ringtone} will stop playing the
300 * If this is false, make sure to {@link Ringtone#stop()} any previous
322 mPreviousRingtone.stop();
382 mPreviousRingtone.stop();
H A DSoundPool.java48 * SoundPool will automatically stop a previously playing stream based first
55 * explicitly call the stop() function to stop the sound. Any other non-zero
69 * the SoundPool was created. In this case, the stream allocator will stop
71 * low priority, it will choose the oldest stream to stop. In the case
265 * another sound to stop playing if the maximum number of active
339 public native final void stop(int streamID); method in class:SoundPool
/frameworks/base/media/java/android/media/videoeditor/
H A DMediaArtistNativeHelper.java3751 void stop(String filename) { method in class:MediaArtistNativeHelper
H A DVideoEditorImpl.java331 mMANativeHelper.stop(filename);
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp131 status_t JMediaCodec::stop() { function in class:android::JMediaCodec
134 return mCodec->stop();
420 status_t err = codec->stop();
805 { "stop", "()V", (void *)android_media_MediaCodec_stop },
H A Dandroid_media_MediaCodec.h51 status_t stop();
H A Dandroid_media_MediaPlayer.cpp354 ALOGV("stop");
360 process_media_player_call( env, thiz, mp->stop(), NULL, NULL );
H A Dandroid_media_MediaRecorder.cpp360 ALOGV("stop");
362 process_media_recorder_call(env, mr->stop(), "java/lang/RuntimeException", "stop failed.");
471 {"stop", "()V", (void *)android_media_MediaRecorder_stop},
/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool.cpp128 ap->stop(channelID);
252 { "stop",
/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 DGLFrame.java149 timer.stop("glFinish " + message);

Completed in 174 milliseconds

1234567891011>>