Home | History | Annotate | Download | only in gui

Lines Matching refs:maxBufferCount

159         int maxBufferCount = getMaxBufferCountLocked();
160 for (int i=0 ; i<maxBufferCount; i++) {
240 int maxBufferCount = getMaxBufferCountLocked();
241 if (slot < 0 || maxBufferCount <= slot) {
243 maxBufferCount, slot);
290 const int maxBufferCount = getMaxBufferCountLocked();
294 for (int i = maxBufferCount; i < NUM_BUFFER_SLOTS; i++) {
305 for (int i = 0; i < maxBufferCount; i++) {
338 const int newUndequeuedCount = maxBufferCount - (dequeuedCount+1);
507 int maxBufferCount = getMaxBufferCountLocked();
508 if (buf < 0 || buf >= maxBufferCount) {
510 maxBufferCount, buf);
604 int maxBufferCount = getMaxBufferCountLocked();
605 if (buf < 0 || buf >= maxBufferCount) {
607 maxBufferCount, buf);
730 int maxBufferCount = getMaxBufferCountLocked();
733 "%s-BufferQueue maxBufferCount=%d, mSynchronousMode=%d, default-size=[%dx%d], "
735 prefix, maxBufferCount, mSynchronousMode, mDefaultWidth,
753 for (int i=0 ; i<maxBufferCount ; i++) {
1041 int maxBufferCount = mDefaultMaxBufferCount;
1042 if (maxBufferCount < minMaxBufferCount) {
1043 maxBufferCount = minMaxBufferCount;
1047 maxBufferCount = mOverrideMaxBufferCount;
1054 for (int i = maxBufferCount; i < NUM_BUFFER_SLOTS; i++) {
1057 maxBufferCount = i + 1;
1061 return maxBufferCount;