Home
last modified time | relevance | path

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

/frameworks/native/libs/gui/
DBufferQueueCore.cpp72 mUnusedSlots(), in BufferQueueCore()
106 mUnusedSlots.push_front(s); in BufferQueueCore()
271 if (delta > static_cast<int>(mUnusedSlots.size())) { in adjustAvailableSlotsLocked()
275 if (mUnusedSlots.empty()) { in adjustAvailableSlotsLocked()
278 int slot = mUnusedSlots.back(); in adjustAvailableSlotsLocked()
279 mUnusedSlots.pop_back(); in adjustAvailableSlotsLocked()
293 mUnusedSlots.push_back(*slot); in adjustAvailableSlotsLocked()
298 mUnusedSlots.push_back(slot); in adjustAvailableSlotsLocked()
327 std::find(mUnusedSlots.cbegin(), mUnusedSlots.cend(), slot) != in validateConsistencyLocked()
328 mUnusedSlots.cend(); in validateConsistencyLocked()
[all …]
/frameworks/native/libs/gui/include/gui/
DBufferQueueCore.h214 std::list<int> mUnusedSlots; variable