Home
last modified time | relevance | path

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

/frameworks/native/libs/gui/
DBufferQueueCore.cpp103 mUnusedSlots(), in BufferQueueCore()
140 mUnusedSlots.push_front(s); in BufferQueueCore()
328 if (delta > static_cast<int>(mUnusedSlots.size())) { in adjustAvailableSlotsLocked()
332 if (mUnusedSlots.empty()) { in adjustAvailableSlotsLocked()
335 int slot = mUnusedSlots.back(); in adjustAvailableSlotsLocked()
336 mUnusedSlots.pop_back(); in adjustAvailableSlotsLocked()
350 mUnusedSlots.push_back(*slot); in adjustAvailableSlotsLocked()
355 mUnusedSlots.push_back(slot); in adjustAvailableSlotsLocked()
384 std::find(mUnusedSlots.cbegin(), mUnusedSlots.cend(), slot) != in validateConsistencyLocked()
385 mUnusedSlots.cend(); in validateConsistencyLocked()
[all …]
/frameworks/native/libs/gui/include/gui/
DBufferQueueCore.h216 std::list<int> mUnusedSlots; variable