Lines Matching refs:mPendingInputFrames
124 mPendingInputFrames[*it].error = true; in compilePendingInputLocked()
134 if ((mPendingInputFrames.find(imgBuffer.timestamp) != mPendingInputFrames.end()) && in compilePendingInputLocked()
135 (mPendingInputFrames[imgBuffer.timestamp].error)) { in compilePendingInputLocked()
138 mPendingInputFrames[imgBuffer.timestamp].jpegBuffer = imgBuffer; in compilePendingInputLocked()
153 mPendingInputFrames[*it].error = true; in compilePendingInputLocked()
163 if ((mPendingInputFrames.find(imgBuffer.timestamp) != mPendingInputFrames.end()) && in compilePendingInputLocked()
164 (mPendingInputFrames[imgBuffer.timestamp].error)) { in compilePendingInputLocked()
167 mPendingInputFrames[imgBuffer.timestamp].depthBuffer = imgBuffer; in compilePendingInputLocked()
178 mPendingInputFrames[it->first].frameNumber = std::get<0>(it->second); in compilePendingInputLocked()
179 mPendingInputFrames[it->first].result = std::get<1>(it->second); in compilePendingInputLocked()
186 mPendingInputFrames[it->second].frameNumber = it->first; in compilePendingInputLocked()
193 for (auto &inputFrame : mPendingInputFrames) { in compilePendingInputLocked()
217 for (const auto& it : mPendingInputFrames) { in getNextReadyInputLocked()
234 for (const auto& it : mPendingInputFrames) { in getNextFailingInputLocked()
419 auto it = mPendingInputFrames.begin(); in releaseInputFramesLocked()
420 while (it != mPendingInputFrames.end()) { in releaseInputFramesLocked()
423 it = mPendingInputFrames.erase(it); in releaseInputFramesLocked()
457 releaseInputFrameLocked(&mPendingInputFrames[currentTs]); in threadLoop()
473 auto res = processInputFrame(currentTs, mPendingInputFrames[currentTs]); in threadLoop()
478 mPendingInputFrames[currentTs].error = true; in threadLoop()