Home | History | Annotate | Download | only in gui

Lines Matching refs:bufferCount

139 status_t BufferQueue::setBufferCount(int bufferCount) {
140 ST_LOGV("setBufferCount: count=%d", bufferCount);
150 if (bufferCount > NUM_BUFFER_SLOTS) {
151 ST_LOGE("setBufferCount: bufferCount too large (max %d)",
164 if (bufferCount == 0) {
172 if (bufferCount < minBufferSlots) {
174 "minimum (%d)", bufferCount, minBufferSlots);
182 mOverrideMaxBufferCount = bufferCount;
290 ST_LOGE("dequeueBuffer: async mode is invalid with buffercount override");
517 ST_LOGE("queueBuffer: async mode is invalid with buffercount override");
1131 status_t BufferQueue::setDefaultMaxBufferCount(int bufferCount) {
1134 return setDefaultMaxBufferCountLocked(bufferCount);