Searched refs:stop (Results 251 - 275 of 324) sorted by relevance

<<111213

/frameworks/wilhelm/src/android/
H A Dandroid_StreamPlayer.cpp331 // FIXME NuPlayerDriver is currently not thread-safe, so stop() must be called by looper
346 mPlayer->stop();
H A DAudioPlayer_to_android.cpp50 ap->stop();
251 // there's a single aux bus on Android, so we can stop looking once the first
773 ap->mAudioTrack->stop();
1173 // stop the track so it restarts playing faster when new data is enqueued
1174 ap->mAudioTrack->stop();
1672 pAudioPlayer->mAudioTrack->stop();
1933 ap->mAudioTrack->stop();
H A Dandroid_AudioSfDecoder.cpp65 mAudioSource->stop();
407 //SL_LOGV("AudioSfDecoder::onLoop stop looping");
H A Dandroid_GenericMediaPlayer.cpp263 player->stop();
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp106 stop();
325 void AudioRecord::stop() function in class:android::AudioRecord
334 mAudioRecord->stop();
H A DAudioTrack.cpp147 stop();
399 // write before stop could be partial.
445 void AudioTrack::stop() function in class:android::AudioTrack
448 // FIXME pause then stop should not be a nop
460 mAudioTrack->stop();
466 // will not stop before end of buffer is reached.
467 // It may be needed to make sure that we stop playback, likely in case looping is on.
743 // IAudioTrack::stop() isn't synchronous; we don't know when presentation completes
1386 // to pause or stop the track, or set the position to a new offset within buffer.
H A DToneGenerator.cpp905 ALOGV("Start waiting for previous tone to stop");
908 ALOGE("--- start wait for stop timed out, status %d", lStatus);
982 // corresponds at least to the time between the start and stop commands.
1013 ALOGV("track stop complete, time %d", (unsigned int)(systemTime()/1000000));
1017 mpAudioTrack->stop();
1292 lpToneGen->mpAudioTrack->stop();
1307 lpToneGen->mpAudioTrack->stop();
/frameworks/av/media/libstagefright/
H A DAVIExtractor.cpp42 virtual status_t stop();
99 stop();
124 status_t AVIExtractor::AVISource::stop() { function in class:android::AVIExtractor::AVISource
H A DOggExtractor.cpp51 virtual status_t stop();
146 stop();
164 status_t OggSource::stop() { function in class:android::OggSource
H A DMPEG4Writer.cpp58 status_t stop();
487 (*it2)->stop();
638 * Before stop()/reset() is called, mWriteMoovBoxToMemory is always
833 status_t status = (*it)->stop();
1486 stop();
1762 status_t MPEG4Writer::Track::stop() { function in class:android::MPEG4Writer::Track
1781 status_t status = mSource->stop();
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java731 service.stop(getCallerIdentity());
1039 public int stop() { method in class:TextToSpeech
1043 return service.stop(getCallerIdentity());
1045 }, ERROR, "stop");
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp142 status_t JMediaCodec::stop() { function in class:android::JMediaCodec
145 return mCodec->stop();
514 status_t err = codec->stop();
984 { "stop", "()V", (void *)android_media_MediaCodec_stop },
H A Dandroid_media_MediaRecorder.cpp358 ALOGV("stop");
360 process_media_recorder_call(env, mr->stop(), "java/lang/RuntimeException", "stop failed.");
475 {"stop", "()V", (void *)android_media_MediaRecorder_stop},
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp871 status_t MediaPlayerService::Client::stop() function in class:android::MediaPlayerService::Client
873 ALOGV("[%d] stop", mConnId);
876 return p->stop();
1686 void MediaPlayerService::AudioOutput::stop() function in class:android::MediaPlayerService::AudioOutput
1688 ALOGV("stop");
1689 if (mTrack != 0) mTrack->stop();
1942 void MediaPlayerService::AudioCache::stop() { function in class:android::MediaPlayerService::AudioCache
2082 // record the stop time only if currently this is the only
/frameworks/opt/net/voip/src/java/com/android/server/sip/
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/base/services/java/com/android/server/media/
H A DMediaRouterService.java452 // Note: User already stopped (by switchUser) so no need to send stop message here.
669 stop();
734 private void stop() { method in class:MediaRouterService.UserHandler
738 mWatcher.stop(); // also stops all providers
/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/libstagefright/omx/
H A DGraphicBufferSource.cpp120 ALOGV("stop load with frames available (codecAvail=%d)",
174 mLooper->stop();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DMediaSource.java356 mMediaPlayer.stop();
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
H A DSinkActivity.java416 mDisplaySinkService.stop();
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DFrameworkPerfActivity.java192 mStopButton = (Button)findViewById(R.id.stop);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDatePickerDialog.java282 mHapticFeedbackController.stop();
/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/omx/tests/
H A DOMXHarness.cpp724 CHECK_EQ(codec->stop(), (status_t)OK);
734 CHECK_EQ(codec->stop(), (status_t)OK);
/frameworks/av/media/libstagefright/rtsp/
H A DARTPWriter.cpp158 status_t ARTPWriter::stop() { function in class:android::ARTPWriter
223 CHECK_EQ(mSource->stop(), (status_t)OK);

Completed in 647 milliseconds

<<111213