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

  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.h 138 FLUSHED,
  /frameworks/av/services/audioflinger/
TrackBase.h 28 FLUSHED,
91 return (mState == STOPPED || mState == FLUSHED);
  /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) {
257 while (state != FLUSHED) {
458 * if this encoder isn't already flushed or at end of input.
461 if (state != FLUSHED && state != END_OF_INPUT) {
466 state = FLUSHED;

Completed in 233 milliseconds