Home | History | Annotate | Download | only in libstagefright

Lines Matching refs:it

58     for (std::list<Info>::iterator it = mRenderQueue.begin();
59 it != mRenderQueue.end(); ++it) {
60 if (it->mGraphicBuffer->handle == buf->handle) {
61 renderInfo = it;
116 for (std::list<Info>::iterator it = mRenderQueue.begin();
117 it != mRenderQueue.end(); ) {
119 if (it->mIndex < 0) {
122 } else if (it->mFence != NULL) {
124 nsecs_t signalTime = it->mFence->getSignalTime();
131 it->mFence.clear();
132 it->mRenderTimeNs = signalTime;
135 bool foundFrame = (Info *)&*it == until;
140 if (drop || (it->mFence == NULL && it == mRenderQueue.begin())) {
142 done.splice(done.end(), mRenderQueue, it++);
144 ++it;
160 for (std::list<Info>::iterator it = mRenderQueue.begin();
161 it != mRenderQueue.end(); ) {
162 if (&*it == info) {
163 mRenderQueue.erase(it++);
165 if (it->mIndex > index) {
166 --(it->mIndex);
168 ++it;
176 for (std::list<Info>::const_iterator it = mRenderQueue.cbegin();
177 it != mRenderQueue.cend(); ++it) {
178 if (it->mFence == NULL) {
180 it->mGraphicBuffer == NULL ? NULL : it->mGraphicBuffer->handle,
181 (long long)it->mMediaTimeUs, it->mIndex, (long long)it->mRenderTimeNs);
182 } else if (it->mIndex < 0) {
184 it->mGraphicBuffer->handle, (long long)it->mMediaTimeUs,
185 it->mFence->isValid() ? "YES" : "NO");
188 it->mGraphicBuffer->handle, (long long)it->mMediaTimeUs, it->mIndex);