HomeSort by relevance Sort by last modified time
    Searched defs:FLUSHED (Results 1 - 5 of 5) sorted by null

  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoder.java 38 * output buffer must be flushed between invocations;</li>
88 private static final String FLUSHED = "FLUSHED";
185 while (state != FLUSHED) {
423 * if this decoder isn't already flushed or at end of input.
426 if (state != FLUSHED && state != END_OF_INPUT) {
431 state = FLUSHED;
CharsetEncoder.java 38 * The input buffer must be filled and the output buffer must be flushed between invocations.
82 private static final String FLUSHED = "FLUSHED";
190 if (state == FLUSHED) {
263 while (state != FLUSHED) {
466 * This method is a no-op if the encoder has already been flushed.
473 * if this encoder isn't already flushed or at end of input.
476 if (state != FLUSHED && state != END_OF_INPUT) {
479 if (state == FLUSHED) {
484 state = FLUSHED;
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.h 175 FLUSHED,
  /frameworks/av/services/audioflinger/
TrackBase.h 28 FLUSHED,
112 return (mState == STOPPED || mState == FLUSHED);
  /frameworks/av/include/media/stagefright/
MediaCodec.h 192 FLUSHED,

Completed in 637 milliseconds