Searched refs:eos (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/media/libstagefright/include/
H A DNuCachedSource2.h43 size_t approxDataRemaining(bool *eos);
96 size_t approxDataRemaining_l(bool *eos);
H A DARTSPController.h45 int64_t getQueueDurationUs(bool *eos);
H A DAwesomePlayer.h251 bool getCachedDuration_l(int64_t *durationUs, bool *eos);
/frameworks/base/media/libstagefright/rtsp/
H A DARTSPController.cpp179 int64_t ARTSPController::getQueueDurationUs(bool *eos) { argument
180 *eos = true;
190 *eos = false;
H A DAPacketSource.h53 int64_t getQueueDurationUs(bool *eos);
H A DARTPSession.cpp143 int32_t eos; local
144 if (msg->findInt32("eos", &eos) && eos) {
H A DAPacketSource.cpp773 int64_t APacketSource::getQueueDurationUs(bool *eos) { argument
776 *eos = (mEOSResult != OK);
H A DMyHandler.h726 int32_t eos; local
727 if (msg->findInt32("eos", &eos)) {
/frameworks/base/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp89 bool eos() const;
210 bool BlockIterator::eos() const { function in class:android::BlockIterator
215 while (!eos()) {
221 if (eos()) {
239 while (!eos() && block()->GetTrackNumber() != mTrackNum) {
248 while (!eos() && block()->GetTrackNumber() != mTrackNum) {
252 while (!eos() && !mBlockEntry->GetBlock()->IsKey()) {
258 CHECK(!eos());
307 if (mBlockIter.eos()) {
795 while (!iter.eos()
[all...]
/frameworks/base/media/libstagefright/
H A DAwesomePlayer.cpp546 bool AwesomePlayer::getCachedDuration_l(int64_t *durationUs, bool *eos) { argument
550 *durationUs = mRTSPController->getQueueDurationUs(eos);
553 size_t cachedDataRemaining = mCachedSource->approxDataRemaining(eos);
569 bool eos; local
570 size_t cachedDataRemaining = mCachedSource->approxDataRemaining(&eos);
572 if (eos) {
594 if ((mFlags & PLAYING) && !eos
601 } else if (eos || cachedDataRemaining > kHighWaterMarkBytes) {
619 bool eos; local
620 if (getCachedDuration_l(&cachedDurationUs, &eos)) {
1490 bool eos; local
[all...]
H A DNuCachedSource2.cpp410 size_t NuCachedSource2::approxDataRemaining(bool *eos) { argument
412 return approxDataRemaining_l(eos);
415 size_t NuCachedSource2::approxDataRemaining_l(bool *eos) { argument
416 *eos = (mFinalStatus != OK);
/frameworks/base/libs/binder/
H A DParcel.cpp911 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail)); local
912 if (eos) {
913 const size_t len = eos - str;

Completed in 113 milliseconds