Searched defs:pause (Results 51 - 75 of 76) sorted by relevance

1234

/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp417 int fps, width, height, count, pause; local
426 else if (sscanf(l, " %c %d %d %s", &pathType, &count, &pause, path) == 4) {
427 //LOGD("> type=%c, count=%d, pause=%d, path=%s", pathType, count, pause, path);
431 part.pause = pause;
558 usleep(part.pause * ns2us(frameDuration));
/frameworks/base/core/java/android/transition/
H A DTransition.java137 // Whether this transition is currently paused, due to a call to pause()
140 // Whether this transition has ended. Used to avoid pause/resume on transitions
1197 public void pause() { method in class:Transition
1203 anim.pause();
/frameworks/base/core/java/android/widget/
H A DMediaController.java252 mPauseButton = (ImageButton) v.findViewById(com.android.internal.R.id.pause);
310 * Disable pause or seek buttons if the stream cannot be paused or seeked.
481 mPlayer.pause();
523 mPlayer.pause();
671 void pause(); method in interface:MediaController.MediaPlayerControl
H A DVideoView.java90 // calling pause() intends to bring the object to a target state
300 // Tell the music playback service to pause
303 i.putExtra("command", "pause");
665 pause();
681 pause();
711 public void pause() { method in class:VideoView
714 mMediaPlayer.pause();
/frameworks/base/media/java/android/media/
H A DJetPlayer.java255 public boolean pause() { method in class:JetPlayer
526 * Callback for when JET pause state is updated.
H A DAudioTrack.java997 * {@link #pause()}, followed by {@link #flush()} to discard audio data that hasn't been played
1021 public void pause() method in class:AudioTrack
1024 throw new IllegalStateException("pause() called on uninitialized AudioTrack.");
1026 //logd("pause()");
1028 // pause playback
H A DMediaPlayer.java112 * {@link #setVolume(float, float)}, {@link #pause()}, {@link #start()},
228 * can be adjusted. Playback can be paused via {@link #pause()}. When the call to
229 * {@link #pause()} returns, the MediaPlayer object enters the
241 * <li>Calling {@link #pause()} has no effect on
346 * <tr><td>pause </p></td>
1088 public void pause() throws IllegalStateException { method in class:MediaPlayer
2946 // we should not be there, but at least signal pause
3122 // we expect to have received the pause-change event delayed.
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DVideoDumpView.java166 public void pause() { method in class:VideoDumpView
167 mMediaPlayer.pause();
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRemotePlaybackClient.java104 * {@link MediaControlIntent#ACTION_PAUSE pause},
411 * Sends a request to pause media playback.
430 public void pause(Bundle extras, SessionActionCallback callback) { method in class:RemotePlaybackClient
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPlayer.cpp107 return pause();
110 status_t VideoEditorPlayer::pause() { function in class:android::VideoEditorPlayer
111 ALOGV("pause");
112 return mPlayer->pause();
519 void VideoEditorPlayer::VeAudioOutput::pause() { function in class:android::VideoEditorPlayer::VeAudioOutput
521 ALOGV("VeAudioOutput::pause");
522 if (mTrack != 0) mTrack->pause();
H A DPreviewPlayer.cpp486 //pause before sending event
584 mAudioPlayer->pause();
805 // locations, we'll "pause" the audio source, causing it to
809 mAudioPlayer->pause();
812 mAudioSource->pause();
1733 status_t PreviewPlayer::pause() { function in class:android::PreviewPlayer
1753 mAudioPlayer->pause(true /* playPendingSamples */);
1755 mAudioPlayer->pause();
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp434 t->pause();
448 // FIXME pause then stop should not be a nop
476 t->pause();
520 void AudioTrack::pause() function in class:android::AudioTrack
531 mAudioTrack->pause();
1386 // to pause or stop the track, or set the position to a new offset within buffer.
1387 // This was some experimental code to auto-pause on underrun. Keeping it here
1859 void AudioTrack::AudioTrackThread::pause()
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.h101 virtual void pause();
210 virtual void pause() {} function in class:android::MediaPlayerService::AudioCache
284 // when we pause it, we add the system time back to the audioLastTime
285 // so after the pause, audioLastTime = pause time - start time
332 virtual status_t pause();
H A DMediaPlayerService.cpp879 status_t MediaPlayerService::Client::pause() function in class:android::MediaPlayerService::Client
881 ALOGV("[%d] pause", mConnId);
884 return p->pause();
1698 void MediaPlayerService::AudioOutput::pause() function in class:android::MediaPlayerService::AudioOutput
1700 ALOGV("pause");
1701 if (mTrack != 0) mTrack->pause();
H A DStagefrightRecorder.cpp1600 status_t StagefrightRecorder::pause() { function in class:android::StagefrightRecorder
1601 ALOGV("pause");
1605 mWriter->pause();
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp276 void NuPlayer::pause() { function in class:android::NuPlayer
820 mSource->pause();
821 mRenderer->pause();
/frameworks/av/media/libstagefright/wifi-display/source/
H A DPlaybackSession.cpp78 void pause();
231 void WifiDisplaySource::PlaybackSession::Track::pause() { function in class:android::WifiDisplaySource::PlaybackSession::Track
232 mMediaPuller->pause();
459 status_t WifiDisplaySource::PlaybackSession::pause() { function in class:android::WifiDisplaySource::PlaybackSession
618 mTracks.editValueAt(i)->pause();
H A DWifiDisplaySource.cpp119 status_t WifiDisplaySource::pause() { function in class:android::WifiDisplaySource
270 if (!strcasecmp(val, "pause") && mState == PLAYING) {
1428 status_t err = playbackSession->pause();
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java84 * Set on the next frame after pause() is called, used to calculate a new startTime
997 public void pause() { method in class:ValueAnimator
999 super.pause();
/frameworks/rs/
H A DrsContext.cpp663 void Context::pause() { function in class:Context
848 rsc->pause();
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp1220 status_t AwesomePlayer::pause() { function in class:android::AwesomePlayer
1250 mAudioPlayer->pause(at_eos /* playPendingSamples */);
1259 mTextDriver->pause();
1746 // locations, we'll "pause" the audio source, causing it to
1750 mAudioPlayer->pause();
1754 mAudioSource->pause();
H A DOMXCodec.cpp4517 status_t OMXCodec::pause() { function in class:android::OMXCodec
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h217 void pause() { function in struct:android::MyHandler
1031 ALOGV("Ignoring outdated pause message.");
1036 ALOGW("This is a live stream, ignoring pause request.");
/frameworks/av/services/audioflinger/
H A DTracks.cpp254 void AudioFlinger::TrackHandle::pause() { function in class:android::AudioFlinger::TrackHandle
255 mTrack->pause();
661 void AudioFlinger::PlaybackThread::Track::pause() function in class:android::AudioFlinger::PlaybackThread::Track
663 ALOGV("pause(%d), calling pid %d", mName, IPCThreadState::self()->getCallingPid());
704 // a pause
930 // FIXME look at mute, pause, and stop flags
1251 // the transform represents a pause, so yield silence
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphRunner.java700 public void pause() { method in class:GraphRunner
932 /** Like pause(), but closes all filters. Can be resumed using restart(). */

Completed in 516 milliseconds

1234