Home
last modified time | relevance | path

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

/frameworks/native/libs/gui/
DBufferQueueCore.cpp73 mUnusedSlots(), in BufferQueueCore()
109 mUnusedSlots.push_front(s); in BufferQueueCore()
282 if (delta > static_cast<int>(mUnusedSlots.size())) { in adjustAvailableSlotsLocked()
286 if (mUnusedSlots.empty()) { in adjustAvailableSlotsLocked()
289 int slot = mUnusedSlots.back(); in adjustAvailableSlotsLocked()
290 mUnusedSlots.pop_back(); in adjustAvailableSlotsLocked()
304 mUnusedSlots.push_back(*slot); in adjustAvailableSlotsLocked()
309 mUnusedSlots.push_back(slot); in adjustAvailableSlotsLocked()
338 std::find(mUnusedSlots.cbegin(), mUnusedSlots.cend(), slot) != in validateConsistencyLocked()
339 mUnusedSlots.cend(); in validateConsistencyLocked()
[all …]
/frameworks/native/libs/gui/include/gui/
DBufferQueueCore.h219 std::list<int> mUnusedSlots; variable