Home
last modified time | relevance | path

Searched refs:mUnusedSlots (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/libs/gui/
DBufferQueueCore.cpp70 mUnusedSlots(), in BufferQueueCore()
104 mUnusedSlots.push_front(s); in BufferQueueCore()
263 if (delta > static_cast<int>(mUnusedSlots.size())) { in adjustAvailableSlotsLocked()
267 if (mUnusedSlots.empty()) { in adjustAvailableSlotsLocked()
270 int slot = mUnusedSlots.back(); in adjustAvailableSlotsLocked()
271 mUnusedSlots.pop_back(); in adjustAvailableSlotsLocked()
285 mUnusedSlots.push_back(*slot); in adjustAvailableSlotsLocked()
290 mUnusedSlots.push_back(slot); in adjustAvailableSlotsLocked()
319 std::find(mUnusedSlots.cbegin(), mUnusedSlots.cend(), slot) != in validateConsistencyLocked()
320 mUnusedSlots.cend(); in validateConsistencyLocked()
[all …]
/frameworks/native/include/gui/
DBufferQueueCore.h214 std::list<int> mUnusedSlots; variable