/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
H A D | encodedstreamtest.cpp | 169 EncodedOutputStream<FileEncoding, FileWriteStream> eos(os, putBOM); in TestEncodedOutputStream() local 172 bool success = Transcoder<UTF8<>, MemoryEncoding>::Transcode(s, eos); in TestEncodedOutputStream() 175 eos.Flush(); in TestEncodedOutputStream() 184 EncodedOutputStream<FileEncoding, MemoryBuffer> eos(mb, putBOM); in TestEncodedOutputStream() local 187 bool success = Transcoder<UTF8<>, MemoryEncoding>::Transcode(s, eos); in TestEncodedOutputStream() 190 eos.Flush(); in TestEncodedOutputStream() 203 AutoUTFOutputStream<unsigned, FileWriteStream> eos(os, type, putBOM); in TestAutoUTFOutputStream() local 206 bool success = Transcoder<UTF8<>, AutoUTF<unsigned> >::Transcode(s, eos); in TestAutoUTFOutputStream() 209 eos.Flush(); in TestAutoUTFOutputStream() 218 AutoUTFOutputStream<unsigned, MemoryBuffer> eos(mb, type, putBOM); in TestAutoUTFOutputStream() local [all …]
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/example/prettyauto/ |
H A D | prettyauto.cpp | 39 OutputStream eos(os, eis.GetType(), eis.HasBOM()); // NEW in main() local 40 PrettyWriter<OutputStream, UTF8<>, AutoUTF<unsigned> > writer(eos); // CHANGED in main() 44 OutputStream eos(os, true); // NEW in main() local 45 PrettyWriter<OutputStream, UTF8<>, UTF16LE<> > writer(eos); // CHANGED in main()
|
/aosp12/frameworks/wilhelm/src/android/ |
H A D | android_AudioSfDecoder.cpp | 425 bool eos; in onCheckCache() local 426 CacheStatus_t status = getCacheRemaining(&eos); in onCheckCache() 428 if (eos || status == kStatusHigh in onCheckCache() 456 bool eos; in onDecode() local 463 && (getCacheRemaining(&eos) == kStatusLow) in onDecode() 464 && !eos) { in onDecode() 679 CacheStatus_t AudioSfDecoder::getCacheRemaining(bool *eos) { in getCacheRemaining() argument 687 *eos = (finalStatus != OK); in getCacheRemaining() 695 if (*eos) { in getCacheRemaining()
|
/aosp12/frameworks/av/media/libmediatranscoding/transcoder/tests/ |
H A D | VideoTrackTranscoderTests.cpp | 109 bool eos = false; in TEST_F() local 111 transcoder->setSampleConsumer([&sampleCount, &eos](const std::shared_ptr<MediaSample>& sample) { in TEST_F() 134 EXPECT_FALSE(eos); in TEST_F() 135 eos = true; in TEST_F()
|
H A D | PassthroughTrackTranscoderTests.cpp | 168 bool eos = false; in TEST_F() local 171 [&sampleCount, &sampleChecksums, &eos](const std::shared_ptr<MediaSample>& sample) { in TEST_F() 173 EXPECT_FALSE(eos); in TEST_F() 176 eos = true; in TEST_F()
|
/aosp12/frameworks/av/media/libmediaplayerservice/nuplayer/ |
H A D | NuPlayerDecoder.cpp | 759 bool eos = flags & MediaCodec::BUFFER_FLAG_EOS; in handleAnOutputBuffer() local 767 if (eos) { in handleAnOutputBuffer() 782 if (eos) { in handleAnOutputBuffer() 800 if (eos && !isDiscontinuityPending()) { in handleAnOutputBuffer() 1059 int32_t eos, csd, cvo; in onInputBufferFetched() local 1061 if (buffer->meta()->findInt32("eos", &eos) && eos) { in onInputBufferFetched() 1172 int32_t eos; in onRenderBuffer() local 1193 if (!msg->findInt32("eos", &eos) || !eos || in onRenderBuffer() 1204 if (msg->findInt32("eos", &eos) && eos in onRenderBuffer()
|
/aosp12/frameworks/av/media/libstagefright/rtsp/ |
H A D | ARTPSession.cpp | 141 int32_t eos; in onMessageReceived() local 142 if (msg->findInt32("eos", &eos) && eos) { in onMessageReceived()
|
/aosp12/frameworks/av/media/libstagefright/filters/ |
H A D | MediaFilter.cpp | 463 int32_t eos = 0; in processBuffers() local 464 if (inputInfo->mData->meta()->findInt32("eos", &eos) && eos != 0) { in processBuffers() 467 outputInfo->mData->meta()->setInt32("eos", eos); in processBuffers() 639 bool eos = false; in onInputBufferFilled() local 652 eos = true; in onInputBufferFilled() 659 if (eos) { in onInputBufferFilled()
|
/aosp12/frameworks/av/media/codec2/components/mp3/ |
H A D | C2SoftMp3Dec.cpp | 344 bool eos = ((work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0); in process() local 357 if (inSize == 0 && (!mGaplessBytes || !eos)) { in process() 375 if (eos) { in process() 474 if (eos) { in process() 500 if (eos) { in process()
|
/aosp12/frameworks/av/media/codec2/sfplugin/ |
H A D | FrameReassembler.cpp | 175 int32_t eos = 0; in process() local 176 if (buffer->meta()->findInt32("eos", &eos) && eos) { in process()
|
/aosp12/frameworks/av/media/codec2/components/flac/ |
H A D | C2SoftFlacDec.cpp | 202 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in process() local 210 if (eos) { in process() 239 if (eos) { in process() 314 if (eos) { in process()
|
/aosp12/system/netd/libnetdutils/include/netdutils/ |
H A D | BackoffSequence.h | 87 constexpr Builder& withEndOfSequenceIndicator(time_type eos) { in withEndOfSequenceIndicator() argument 88 mParams.endOfSequenceIndicator = eos; in withEndOfSequenceIndicator()
|
/aosp12/frameworks/av/media/codec2/components/g711/ |
H A D | C2SoftG711Dec.cpp | 159 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in process() local 169 if (eos) { in process() 205 if (eos) { in process()
|
/aosp12/frameworks/av/media/codec2/components/opus/ |
H A D | C2SoftOpusDec.cpp | 222 bool eos = ((work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0); in process() local 237 if (eos) { in process() 359 if (eos) { in process() 433 if (eos) { in process()
|
H A D | C2SoftOpusEnc.cpp | 337 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in process() local 481 if (eos) { in process() 532 if (eos) { in process() 564 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in drainInternal() local 592 (C2FrameData::flags_t)(eos ? C2FrameData::FLAG_END_OF_STREAM : 0); in drainInternal()
|
/aosp12/frameworks/wilhelm/tests/mimeUri/ |
H A D | slesTestGetPositionUri.cpp | 39 bool eos = false; variable 60 eos = true; in SignalEos() 293 while (!eos) { in TestGetPositionUri()
|
/aosp12/frameworks/base/media/jni/ |
H A D | android_media_MediaExtractor.cpp | 290 bool JMediaExtractor::getCachedDuration(int64_t *durationUs, bool *eos) const { in getCachedDuration() 291 return mImpl->getCachedDuration(durationUs, eos); in getCachedDuration() 869 bool eos; in android_media_MediaExtractor_getCachedDurationUs() local 870 if (!extractor->getCachedDuration(&cachedDurationUs, &eos)) { in android_media_MediaExtractor_getCachedDurationUs() 887 bool eos; in android_media_MediaExtractor_hasCacheReachedEOS() local 888 if (!extractor->getCachedDuration(&cachedDurationUs, &eos)) { in android_media_MediaExtractor_hasCacheReachedEOS() 892 return eos ? JNI_TRUE : JNI_FALSE; in android_media_MediaExtractor_hasCacheReachedEOS()
|
/aosp12/frameworks/av/media/codec2/components/vorbis/ |
H A D | C2SoftVorbisDec.cpp | 238 bool eos = ((work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0); in process() local 254 if (eos) { in process() 339 if (eos) { in process() 437 if (eos) { in process()
|
/aosp12/frameworks/av/media/codec2/hidl/1.0/utils/ |
H A D | InputSurface.cpp | 60 bool eos() const { return mEos->value; } in eos() function in android::hardware::media::c2::V1_0::utils::InputSurface::Interface 93 if (mIntf->eos()) { in config()
|
/aosp12/frameworks/av/media/codec2/components/gsm/ |
H A D | C2SoftGsmDec.cpp | 181 bool eos = ((work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0); in process() local 199 if (eos) { in process() 238 if (eos) { in process()
|
/aosp12/frameworks/av/media/codec2/components/aac/ |
H A D | C2SoftAacDec.cpp | 473 bool eos) { in drainRingBuffer() argument 484 if (eos) { in drainRingBuffer() 580 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in process() local 947 if (!eos && mOutputDelayCompensated < outputDelay) { in process() 959 if (eos) { in process() 979 bool eos = (drainMode == DRAIN_COMPONENT_WITH_EOS); in drainInternal() local 982 drainRingBuffer(work, pool, eos); in drainInternal() 984 if (eos) { in drainInternal()
|
/aosp12/frameworks/av/media/libstagefright/ |
H A D | ACodecBufferChannel.cpp | 109 int32_t eos; in queueInputBuffer() local 110 if (it->mClientBuffer->meta()->findInt32("eos", &eos)) { in queueInputBuffer() 111 it->mCodecBuffer->meta()->setInt32("eos", eos); in queueInputBuffer() 258 int32_t eos; in queueSecureInputBuffer() local 259 if (it->mClientBuffer->meta()->findInt32("eos", &eos)) { in queueSecureInputBuffer() 260 it->mCodecBuffer->meta()->setInt32("eos", eos); in queueSecureInputBuffer()
|
/aosp12/frameworks/av/media/codec2/components/amr_nb_wb/ |
H A D | C2SoftAmrNbEnc.cpp | 194 bool eos = ((work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0); in process() local 243 if (eos) { in process() 278 if (eos) { in process()
|
H A D | C2SoftAmrDec.cpp | 265 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in process() local 270 if (eos) { in process() 372 if (eos) { in process()
|
/aosp12/frameworks/av/media/extractors/mkv/ |
H A D | MatroskaExtractor.cpp | 103 bool eos() const; 332 bool BlockIterator::eos() const { in eos() function in android::BlockIterator 427 } while (!eos() && block()->GetTrackNumber() != mTrackNum); in reset() 459 } while (!eos() && block()->GetTrackNumber() != mTrackNum); in seek() 558 if (eos()) break; in seek() 574 CHECK(!eos()); in block() 784 if (mBlockIter.eos()) { in readBlock() 1659 if (iter.eos()) { in synthesizeAVCC() 1687 if (iter.eos()) { in synthesizeMPEG2() 1732 if (iter.eos()) { in synthesizeMPEG4() [all …]
|