Searched defs:stop (Results 1 - 25 of 219) sorted by path

123456789

/frameworks/av/cmds/screenrecord/
H A DOverlay.cpp92 status_t Overlay::stop() { function in class:Overlay
93 ALOGV("Overlay::stop");
131 return false; // stop
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp94 status_t SimplePlayer::stop() { function in class:android::SimplePlayer
H A DSineSource.cpp23 stop();
39 status_t SineSource::stop() { function in class:android::SineSource
H A Drecordvideo.cpp88 virtual status_t stop() { function in class:DummySource
324 err = writer->stop();
H A Dstagefright.cpp168 CHECK_EQ((status_t)OK, source->stop());
297 rawSource->stop();
377 rawSource->stop();
407 virtual status_t stop();
452 status_t DetectSyncSource::stop() { function in class:DetectSyncSource
453 return mSource->stop();
542 writer->stop();
599 CHECK_EQ((status_t)OK, source->stop());
/frameworks/av/include/media/stagefright/
H A DAACWriter.h37 virtual status_t stop() { return reset(); } function in struct:android::AACWriter
H A DAMRWriter.h39 virtual status_t stop() { return reset(); } function in struct:android::AMRWriter
H A DAudioSource.h48 virtual status_t stop() { return reset(); } function in struct:android::AudioSource
H A DCameraSource.h97 virtual status_t stop() { return reset(); } function in class:android::CameraSource
103 * Must call this method before stop().
H A DMPEG2TSWriter.h39 virtual status_t stop() { return reset(); } function in struct:android::MPEG2TSWriter
H A DMPEG4Writer.h46 virtual status_t stop() { return reset(); } function in class:android::MPEG4Writer
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp111 stop();
309 // read before stop could be partial.
316 // This is legacy behavior. This is not done in stop() to avoid a race condition
349 void AudioRecord::stop() function in class:android::AudioRecord
358 mAudioRecord->stop();
360 // Note: legacy handling - stop does not clear record marker and
482 // stop capture so that audio policy manager does not reject the new instance start request
485 mAudioRecord->stop();
H A DAudioTrack.cpp255 stop();
578 // It is possible since flush and stop are asynchronous that the server
592 // since the flush is asynchronous and stop may not fully drain.
598 // write before stop could be partial.
645 void AudioTrack::stop() function in class:android::AudioTrack
660 mAudioTrack->stop();
662 // Note: legacy handling - stop does not clear playback marker
1121 // IAudioTrack::stop() isn't synchronous; we don't know when presentation completes
1820 // to pause or stop the track, or set the position to a new offset within buffer.
1914 // for DEAD_OBJECT, we do not send a EVENT_STREAM_END after stop();
[all...]
H A DIAudioRecord.cpp60 virtual void stop() function in class:android::BpAudioRecord
86 stop();
H A DIAudioTrack.cpp80 virtual void stop() function in class:android::BpAudioTrack
168 stop();
H A DIMediaPlayer.cpp167 status_t stop() function in class:android::BpMediaPlayer
511 reply->writeInt32(stop());
H A DIMediaRecorder.cpp264 status_t stop() function in class:android::BpMediaRecorder
266 ALOGV("stop");
355 reply->writeInt32(stop());
H A DIMediaSource.cpp94 virtual status_t stop() { function in class:android::BpMediaSource
95 ALOGV("stop");
297 ALOGV("stop");
300 status_t status = stop();
386 maxNumBuffers = 0; // No more MediaBuffers, stop readMultiple.
419 maxNumBuffers = 0; // stop readMultiple with one shared buffer.
430 maxNumBuffers = 0; // stop readMultiple if inline transfer is too large.
H A Dmediaplayer.cpp330 status_t MediaPlayer::stop() function in class:android::MediaPlayer
332 ALOGV("stop");
337 status_t ret = mPlayer->stop();
345 ALOGE("stop called in state %d, mPlayer(%p)", mCurrentState, mPlayer.get());
H A Dmediarecorder.cpp501 status_t MediaRecorder::stop() function in class:android::MediaRecorder
503 ALOGV("stop");
509 ALOGE("stop called in an invalid state: %d", mCurrentState);
513 status_t ret = mMediaRecorder->stop();
515 ALOGE("stop failed: %d", ret);
521 // stop and reset are semantically different.
573 ALOGE("stop called in an invalid state: %d", mCurrentState);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp989 status_t MediaPlayerService::Client::stop() function in class:android::MediaPlayerService::Client
991 ALOGV("[%d] stop", mConnId);
994 return p->stop();
1634 mRecycledTrack->stop(); // ensure full data drain
2010 void MediaPlayerService::AudioOutput::stop() function in class:android::MediaPlayerService::AudioOutput
2012 ALOGV("stop");
2014 if (mTrack != 0) mTrack->stop();
2339 // record the stop time only if currently this is the only
H A DMediaPlayerService.h54 void stop() { mActive = false; } function in class:android::Antagonizer
108 virtual void stop();
293 virtual status_t stop();
H A DMediaRecorderClient.cpp242 status_t MediaRecorderClient::stop() function in class:android::MediaRecorderClient
244 ALOGV("stop");
250 return mRecorder->stop();
H A DStagefrightRecorder.cpp92 stop();
95 mLooper->stop();
1635 cameraSource->stop();
1848 status_t StagefrightRecorder::stop() { function in class:StagefrightRecorder
1849 ALOGV("stop");
1858 err = mWriter->stop();
1893 stop();
1900 stop();
H A DTestPlayerStub.h87 virtual status_t stop() {return mPlayer->stop();} function in class:android::TestPlayerStub

Completed in 518 milliseconds

123456789