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

  /libcore/luni/src/main/java/java/nio/charset/
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...]
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;
  /frameworks/av/services/audioflinger/
TrackBase.h 28 FLUSHED,
112 return (mState == STOPPED || mState == FLUSHED);
Tracks.cpp 541 case FLUSHED:
806 ALOGV("flushed in STOPPING_1 or 2 state, change state to ACTIVE");
819 mState != PAUSED && mState != PAUSING && mState != IDLE && mState != FLUSHED) {
823 // FLUSHED state
824 mState = FLUSHED;
827 // prepareTracks_l() will see mState == FLUSHED, then
836 // Prevent flush being lost if the track is flushed and then resumed
862 if (mState == FLUSHED) {
    [all...]
Threads.cpp     [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.h 175 FLUSHED,
NuPlayer.cpp     [all...]
  /frameworks/av/media/libstagefright/
MediaCodec.cpp 840 return mState == STARTED || mState == FLUSHED;
    [all...]
  /frameworks/av/include/media/stagefright/
MediaCodec.h 192 FLUSHED,

Completed in 667 milliseconds