Home
last modified time | relevance | path

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

/frameworks/native/libs/gui/
DBufferQueueCore.cpp104 mUnusedSlots(), in BufferQueueCore()
141 mUnusedSlots.push_front(s); in BufferQueueCore()
330 if (delta > static_cast<int>(mUnusedSlots.size())) { in adjustAvailableSlotsLocked()
334 if (mUnusedSlots.empty()) { in adjustAvailableSlotsLocked()
337 int slot = mUnusedSlots.back(); in adjustAvailableSlotsLocked()
338 mUnusedSlots.pop_back(); in adjustAvailableSlotsLocked()
352 mUnusedSlots.push_back(*slot); in adjustAvailableSlotsLocked()
357 mUnusedSlots.push_back(slot); in adjustAvailableSlotsLocked()
386 std::find(mUnusedSlots.cbegin(), mUnusedSlots.cend(), slot) != in validateConsistencyLocked()
387 mUnusedSlots.cend(); in validateConsistencyLocked()
[all …]
/frameworks/native/libs/gui/include/gui/
DBufferQueueCore.h213 std::list<int> mUnusedSlots; variable