HomeSort by relevance Sort by last modified time
    Searched refs:eos (Results 1 - 25 of 35) sorted by null

1 2

  /external/openssl/crypto/asn1/
a_d2i_fp.c 149 int eos=0; local
208 eos++;
211 else if (eos && (c.slen == 0) && (c.tag == V_ASN1_EOC))
213 /* eos value, so go back and read another header */
214 eos--;
215 if (eos <= 0)
246 if (eos <= 0)
a_bytes.c 273 c->eos=ASN1_const_check_infinite_end(&c->p,
275 if (c->eos) break;
asn1_lib.c 287 if ((c->inf == (1|V_ASN1_CONSTRUCTED)) && (!c->eos))
339 c->eos=0;
  /libcore/luni/src/main/java/java/util/jar/
JarInputStream.java 38 private boolean eos = false; field in class:JarInputStream
156 if (verStream != null && !eos) {
158 eos = true;
210 eos = false;
  /frameworks/base/media/libstagefright/include/
NuCachedSource2.h 43 size_t approxDataRemaining(bool *eos);
96 size_t approxDataRemaining_l(bool *eos);
ARTSPController.h 45 int64_t getQueueDurationUs(bool *eos);
AwesomePlayer.h 250 bool getCachedDuration_l(int64_t *durationUs, bool *eos);
  /libcore/luni/src/main/java/java/util/zip/
GZIPInputStream.java 52 protected boolean eos = false; field in class:GZIPInputStream
130 eos = true;
163 if (eos) {
176 eos = eof; // update eos after every read(), even when it throws
183 if (eos) {
  /frameworks/base/media/libstagefright/rtsp/
ARTSPController.cpp 179 int64_t ARTSPController::getQueueDurationUs(bool *eos) {
180 *eos = true;
190 *eos = false;
APacketSource.h 53 int64_t getQueueDurationUs(bool *eos);
ARTPSession.cpp 143 int32_t eos; local
144 if (msg->findInt32("eos", &eos) && eos) {
APacketSource.cpp 773 int64_t APacketSource::getQueueDurationUs(bool *eos) {
776 *eos = (mEOSResult != OK);
  /frameworks/base/media/libstagefright/matroska/
MatroskaExtractor.cpp 127 bool eos() const;
220 bool BlockIterator::eos() const { function in class:android::BlockIterator
221 return mCluster == NULL || mCluster->EOS();
225 while (!eos()) {
231 if (eos()) {
249 while (!eos() && block()->GetTrackNumber() != mTrackNum) {
258 while (!eos() && block()->GetTrackNumber() != mTrackNum) {
262 while (!eos() && !mBlockEntry->GetBlock()->IsKey()) {
268 CHECK(!eos());
289 if (mBlockIter.eos()) {
    [all...]
  /system/media/opensles/libopensles/
android_SfPlayer.cpp 563 bool eos; local
569 && (getCacheRemaining(&eos) == kStatusLow)
570 && !eos) {
706 bool eos; local
707 CacheStatus status = getCacheRemaining(&eos);
709 if (eos || status == kStatusHigh
763 SfPlayer::CacheStatus SfPlayer::getCacheRemaining(bool *eos) {
769 size_t dataRemaining = cachedSource->approxDataRemaining(eos);
775 //SL_LOGV("SfPlayer::getCacheRemaining: approx %.2f secs remaining (eos=%d)",
776 // dataRemainingUs / 1E6, *eos);
    [all...]
android_SfPlayer.h 58 #define EVENT_ENDOFSTREAM "eos"
96 kEventEndOfStream = 'eos',
215 CacheStatus getCacheRemaining(bool *eos);
  /frameworks/base/media/libstagefright/
AwesomePlayer.cpp 530 bool AwesomePlayer::getCachedDuration_l(int64_t *durationUs, bool *eos) {
534 *durationUs = mRTSPController->getQueueDurationUs(eos);
537 size_t cachedDataRemaining = mCachedSource->approxDataRemaining(eos);
553 bool eos; local
554 size_t cachedDataRemaining = mCachedSource->approxDataRemaining(&eos);
556 if (eos) {
559 LOGV("cache has reached EOS, prepare is done.");
581 if ((mFlags & PLAYING) && !eos
588 } else if (eos || cachedDataRemaining > kHighWaterMarkBytes) {
606 bool eos; local
    [all...]
NuCachedSource2.cpp 267 LOGV("EOS reached, done prefetching for now");
402 size_t NuCachedSource2::approxDataRemaining(bool *eos) {
404 return approxDataRemaining_l(eos);
407 size_t NuCachedSource2::approxDataRemaining_l(bool *eos) {
408 *eos = (mFinalStatus != OK);
  /external/srec/srec/Recognizer/include/
SR_Recognizer.h 465 * @param eos End of speech (seconds)
473 const double eos,
    [all...]
SR_RecognizerImpl.h 292 * Reason for eos detected
525 const double eos,
  /external/srec/srec/Recognizer/src/
Recognizer.c 361 const double eos,
369 return self->logWaveformData(self, waveformFilename, transcription, bos, eos, isInvocab);
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
GZIPInputStreamTest.java 50 return eos;
  /external/srec/srec/test/SRecTest/src/
SRecTest.c 2699 LCHAR eos [MAX_LINE_LENGTH]; local
2793 LCHAR eos [MAX_LINE_LENGTH]; local
    [all...]
  /external/v8/test/mjsunit/
string-indexof-2.js 41 + " dolores eos, qui ratione voluptatem sequi nesciunt, neque porro"
  /external/libpcap/
pcap-dlpi.c 978 char *eos; local
996 unit = strtol(cp, &eos, 10);
997 if (*eos != '\0') {
    [all...]
  /frameworks/base/libs/binder/
Parcel.cpp 911 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail)); local
912 if (eos) {
913 const size_t len = eos - str;
    [all...]

Completed in 247 milliseconds

1 2