Searched defs:stop (Results 126 - 150 of 156) sorted by relevance

1234567

/frameworks/av/media/libstagefright/
H A DOggExtractor.cpp51 virtual status_t stop();
146 stop();
164 status_t OggSource::stop() { function in class:android::OggSource
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp123 virtual status_t stop();
202 status_t MatroskaSource::stop() { function in class:android::MatroskaSource
/frameworks/av/media/libstagefright/wifi-display/
H A DANetworkSession.cpp664 stop();
695 status_t ANetworkSession::stop() { function in class:android::ANetworkSession
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp106 status_t WifiDisplaySource::stop() { function in class:android::WifiDisplaySource
/frameworks/av/services/audioflinger/
H A DEffects.cpp476 status_t AudioFlinger::EffectModule::stop() function in class:android::AudioFlinger::EffectModule
1057 // stop at first error encountered
1393 // calling stop here will remove pre-processing effect from the audio HAL.
1398 mEffects[i]->stop();
H A DTracks.cpp266 // just stop the track on deletion, associated resources
281 void AudioFlinger::TrackHandle::stop() { function in class:android::AudioFlinger::TrackHandle
282 mTrack->stop();
643 void AudioFlinger::PlaybackThread::Track::stop() function in class:android::AudioFlinger::PlaybackThread::Track
645 ALOGV("stop(%d), calling pid %d", mName, IPCThreadState::self()->getCallingPid());
853 // FIXME look at mute, pause, and stop flags
1446 void AudioFlinger::PlaybackThread::OutputTrack::stop() function in class:android::AudioFlinger::PlaybackThread::OutputTrack
1448 Track::stop();
1571 stop();
1660 void AudioFlinger::RecordHandle::stop() { function in class:android::AudioFlinger::RecordHandle
1752 void AudioFlinger::RecordThread::RecordTrack::stop() function in class:android::AudioFlinger::RecordThread::RecordTrack
[all...]
/frameworks/base/core/java/android/speech/srec/
H A DRecognizer.java96 * // stop the Recognizer
97 * recognizer.stop();
100 * // stop the audio device
325 * <code>advance</code>, but before <code>stop</code>.
336 * <code>advance</code>, but before <code>stop</code>.
348 * <code>advance</code>, but before <code>stop</code>.
365 public void stop() { method in class:Recognizer
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java729 service.stop(getCallerIdentity());
1029 public int stop() { method in class:TextToSpeech
1033 return service.stop(getCallerIdentity());
1035 }, ERROR, "stop");
H A DTextToSpeechService.java70 * {@link #onStop} tells the engine that it should stop all ongoing synthesis, if
119 // Tell the synthesizer to stop
121 // Tell the audio playback thread to stop.
186 * Notifies the service that it should stop any in-progress speech synthesis.
302 current.stop();
373 // not stopped correctly if a stop request comes along for the item
377 current.stop();
390 current.stop();
395 mAudioPlaybackHandler.stop();
470 public void stop() { method in class:TextToSpeechService.SpeechItem
[all...]
/frameworks/base/core/java/android/widget/
H A DFastScroller.java319 void stop() { method in class:FastScroller
H A DGallery.java382 // The above call returned a limited amount, so stop any scrolls/flings
1016 * Now's a good time to tell our parent to stop intercepting our events!
1053 mFlingRunnable.stop(false);
1469 public void stop(boolean scrollIntoSlots) { method in class:Gallery.FlingRunnable
/frameworks/base/media/java/android/media/
H A DAudioRecord.java349 stop();
555 public void stop() method in class:AudioRecord
558 throw(new IllegalStateException("stop() called on an uninitialized AudioRecord."));
561 // stop recording
H A DAudioTrack.java490 // even though native_release() stops the native AudioTrack, we need to stop
493 stop();
911 * When used on an instance created in {@link #MODE_STREAM} mode, audio will stop playing
912 * after the last buffer that was written has been played. For an immediate stop, use
917 public void stop() method in class:AudioTrack
920 throw new IllegalStateException("stop() called on uninitialized AudioTrack.");
923 // stop playing
972 * returns. This function is thread safe with respect to {@link #stop} calls,
1013 * returns. This function is thread safe with respect to {@link #stop} calls,
H A DMediaRecorder.java49 * recorder.stop();
691 * application, if no valid audio/video data has been received when stop()
692 * is called. This happens if stop() is called immediately after
699 public native void stop() throws IllegalStateException; method in class:MediaRecorder
H A DMediaPlayer.java102 * {@link #stop()}, {@link #seekTo(int)}, {@link #prepare()} or
234 * <li>Calling {@link #stop()} stops playback and causes a
242 * <li>Calling {@link #stop()} has no effect on a MediaPlayer
464 * <tr><td>stop </p></td>
1060 public void stop() throws IllegalStateException { method in class:MediaPlayer
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp135 status_t JMediaCodec::stop() { function in class:android::JMediaCodec
138 return mCodec->stop();
477 status_t err = codec->stop();
906 { "stop", "()V", (void *)android_media_MediaCodec_stop },
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java346 mSipKeepAliveProcessCallback.stop();
529 mAutoRegistration.stop();
536 mAutoRegistration.stop();
658 public void stop() { method in class:SipService.SipKeepAliveProcessCallback
669 if (SKAI_DBG) log("stop");
715 // update mKeepAliveInterval and stop measurement.
716 stop();
888 public void stop() { method in class:SipService.SipAutoReg
1061 stop();
H A DSipSessionGroup.java245 mSipStack.stop();
1519 mSipKeepAlive.stop();
1559 stop();
1576 stop();
1609 void stop() { method in class:SipSessionGroup.SipSessionImpl.SipKeepAlive
1612 log("stop keepalive:" + mLocalProfile.getUriString()
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorVideoDecoder.cpp57 virtual status_t stop();
94 stop();
120 status_t VideoEditorVideoDecoderSource::stop() { function in class:VideoEditorVideoDecoderSource
896 pDecShellContext->mVideoDecoder->stop();
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp869 status_t MediaPlayerService::Client::stop() function in class:android::MediaPlayerService::Client
871 ALOGV("[%d] stop", mConnId);
874 return p->stop();
1579 void MediaPlayerService::AudioOutput::stop() function in class:android::MediaPlayerService::AudioOutput
1581 ALOGV("stop");
1582 if (mTrack) mTrack->stop();
1815 void MediaPlayerService::AudioCache::stop() { function in class:android::MediaPlayerService::AudioCache
1955 // record the stop time only if currently this is the only
H A DStagefrightRecorder.cpp82 stop();
1442 cameraSource->stop();
1606 status_t StagefrightRecorder::stop() { function in class:android::StagefrightRecorder
1607 ALOGV("stop");
1616 err = mWriter->stop();
1645 stop();
1652 stop();
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DGlowPadView.java148 public void stop() { method in class:GlowPadView.AnimationBundle
467 mTargetAnimations.stop();
532 mTargetAnimations.stop();
735 mGlowAnimations.stop();
736 mTargetAnimations.stop();
H A DMultiWaveView.java149 public void stop() { method in class:MultiWaveView.AnimationBundle
419 mChevronAnimations.stop();
507 mTargetAnimations.stop();
569 mTargetAnimations.stop();
730 mChevronAnimations.stop();
731 mHandleAnimations.stop();
732 mTargetAnimations.stop();
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java1280 final int sleft, final int stop, final int sright, final int sbottom,
1304 sleft, stop, sright, sbottom, null);
1276 drawBitmap( int nativeCanvas, Bitmap_Delegate bitmap, int nativePaintOrZero, final int sleft, final int stop, final int sright, final int sbottom, final int dleft, final int dtop, final int dright, final int dbottom) argument
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java251 mTranslateRunnable.stop();
252 mSnapRunnable.stop();
279 mScaleRunnable.stop();
372 mScaleRunnable.stop();
374 mTranslateRunnable.stop();
376 mSnapRunnable.stop();
378 mRotateRunnable.stop();
996 public void stop() { method in class:PhotoView.ScaleRunnable
1016 stop();
1066 public void stop() { method in class:PhotoView.TranslateRunnable
1162 public void stop() { method in class:PhotoView.SnapRunnable
1255 public void stop() { method in class:PhotoView.RotateRunnable
[all...]

Completed in 579 milliseconds

1234567