Home
last modified time | relevance | path

Searched refs:eos (Results 1 – 19 of 19) sorted by relevance

/frameworks/wilhelm/src/android/
Dandroid_AudioSfDecoder.cpp418 bool eos; in onCheckCache() local
419 CacheStatus_t status = getCacheRemaining(&eos); in onCheckCache()
421 if (eos || status == kStatusHigh in onCheckCache()
449 bool eos; in onDecode() local
456 && (getCacheRemaining(&eos) == kStatusLow) in onDecode()
457 && !eos) { in onDecode()
672 CacheStatus_t AudioSfDecoder::getCacheRemaining(bool *eos) { in getCacheRemaining() argument
680 *eos = (finalStatus != OK); in getCacheRemaining()
688 if (*eos) { in getCacheRemaining()
Dandroid_AudioSfDecoder.h135 CacheStatus_t getCacheRemaining(bool *eos);
/frameworks/av/media/libstagefright/rtsp/
DARTPSession.cpp141 int32_t eos; in onMessageReceived() local
142 if (msg->findInt32("eos", &eos) && eos) { in onMessageReceived()
DMyHandler.h981 int32_t eos; in onMessageReceived() local
982 if (msg->findInt32("eos", &eos)) { in onMessageReceived()
/frameworks/av/media/libstagefright/matroska/
DMatroskaExtractor.cpp92 bool eos() const;
224 bool BlockIterator::eos() const { in eos() function in android::BlockIterator
306 } while (!eos() && block()->GetTrackNumber() != mTrackNum); in reset()
328 } while (!eos() && block()->GetTrackNumber() != mTrackNum); in seek()
407 if (eos()) break; in seek()
420 CHECK(!eos()); in block()
459 if (mBlockIter.eos()) { in readBlock()
946 while (!iter.eos() && j < 20) { in findThumbnails()
/frameworks/base/media/jni/
Dandroid_media_MediaExtractor.cpp288 bool JMediaExtractor::getCachedDuration(int64_t *durationUs, bool *eos) const { in getCachedDuration()
289 return mImpl->getCachedDuration(durationUs, eos); in getCachedDuration()
767 bool eos; in android_media_MediaExtractor_getCachedDurationUs() local
768 if (!extractor->getCachedDuration(&cachedDurationUs, &eos)) { in android_media_MediaExtractor_getCachedDurationUs()
785 bool eos; in android_media_MediaExtractor_hasCacheReachedEOS() local
786 if (!extractor->getCachedDuration(&cachedDurationUs, &eos)) { in android_media_MediaExtractor_hasCacheReachedEOS()
790 return eos; in android_media_MediaExtractor_hasCacheReachedEOS()
Dandroid_media_MediaExtractor.h62 bool getCachedDuration(int64_t *durationUs, bool *eos) const;
/frameworks/av/media/libstagefright/
DAwesomePlayer.cpp617 bool AwesomePlayer::getCachedDuration_l(int64_t *durationUs, bool *eos) { in getCachedDuration_l() argument
624 *eos = (finalStatus != OK); in getCachedDuration_l()
629 *eos = (finalStatus != OK); in getCachedDuration_l()
674 bool eos = (finalStatus != OK); in onBufferingUpdate() local
676 if (eos) { in onBufferingUpdate()
700 if ((mFlags & PLAYING) && !eos in onBufferingUpdate()
709 } else if (eos || cachedDataRemaining > kHighWaterMarkBytes) { in onBufferingUpdate()
729 bool eos = (finalStatus != OK); in onBufferingUpdate() local
731 if (eos) { in onBufferingUpdate()
750 bool eos; in onBufferingUpdate() local
[all …]
DNuMediaExtractor.cpp553 int64_t *durationUs, bool *eos) const { in getCachedDuration()
563 *eos = (finalStatus != OK); in getCachedDuration()
575 *eos = (finalStatus != OK); in getCachedDuration()
DACodec.cpp2833 bool eos = false; in onInputBufferFilled() local
2843 eos = true; in onInputBufferFilled()
2848 eos = true; in onInputBufferFilled()
2862 if (eos) { in onInputBufferFilled()
2884 if (eos) { in onInputBufferFilled()
2932 if (!eos) { in onInputBufferFilled()
/frameworks/wilhelm/tests/mimeUri/
DslesTestGetPositionUri.cpp39 bool eos = false; variable
60 eos = true; in SignalEos()
296 while (!eos) { in TestGetPositionUri()
/frameworks/av/include/media/stagefright/
DNuMediaExtractor.h74 bool getCachedDuration(int64_t *durationUs, bool *eos) const;
/frameworks/wilhelm/tests/examples/
DslesTestDecodeToBuffQueue.cpp83 bool eos = false; variable
121 eos = true; in SignalEos()
511 while (!eos) { in TestDecToBuffQueue()
DslesTestDecodeAac.cpp106 bool eos = false; variable
405 eos = true; in DecPlayCallback()
779 while (!eos) { in TestDecToBuffQueue()
/frameworks/wilhelm/tests/sandbox/
Dxaplay.c167 static const XAAndroidBufferItem eos = {XA_ANDROID_ITEMKEY_EOS, 0}; in bufferQueueCallback() local
183 items = &eos; in bufferQueueCallback()
184 itemSize = sizeof(eos); in bufferQueueCallback()
/frameworks/av/media/libstagefright/include/
DAwesomePlayer.h277 bool getCachedDuration_l(int64_t *durationUs, bool *eos);
/frameworks/native/libs/binder/
DParcel.cpp1037 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail)); in readCString() local
1038 if (eos) { in readCString()
1039 const size_t len = eos - str; in readCString()
/frameworks/base/services/java/com/android/server/
DBackupManagerService.java4180 int eos = offset; in extractString() local
4182 while (eos < end && data[eos] != 0) eos++; in extractString()
4183 return new String(data, offset, eos-offset, "US-ASCII"); in extractString()
/frameworks/base/api/
Dcurrent.txt42357 field protected boolean eos;