Lines Matching refs:mStash
131 mStash.clear(); in clear()
138 mStash.clear(); in flush()
142 mPending.splice(mPending.end(), mStash); in setDepth()
147 mPending.splice(mPending.end(), mStash); in setKey()
173 mStash.emplace_back(buffer, timestamp, flags, ordinal); in emplace()
176 auto it = mStash.begin(); in emplace()
177 for (; it != mStash.end(); ++it) { in emplace()
182 mStash.emplace(it, buffer, timestamp, flags, ordinal); in emplace()
184 mStash.back().flags = mStash.back().flags | MediaCodec::BUFFER_FLAG_EOS; in emplace()
187 while (!mStash.empty() && mStash.size() > mDepth) { in emplace()
188 mPending.push_back(mStash.front()); in emplace()
189 mStash.pop_front(); in emplace()