HomeSort by relevance Sort by last modified time
    Searched refs:maxLockedBuffers (Results 1 - 3 of 3) sorted by null

  /frameworks/native/include/gui/
CpuConsumer.h 92 // Create a new CPU consumer. The maxLockedBuffers parameter specifies
95 size_t maxLockedBuffers, bool controlledByApp = false);
109 // construction-time maxLockedBuffers parameter. If INVALID_OPERATION is
  /frameworks/native/libs/gui/
CpuConsumer.cpp 35 size_t maxLockedBuffers, bool controlledByApp) :
37 mMaxLockedBuffers(maxLockedBuffers),
41 mAcquiredBuffers.insertAt(0, maxLockedBuffers);
44 mConsumer->setMaxAcquiredBufferCount(static_cast<int32_t>(maxLockedBuffers));
  /frameworks/native/libs/gui/tests/
CpuConsumer_test.cpp 46 int maxLockedBuffers;
52 << p.maxLockedBuffers << ", F:0x"
66 params.maxLockedBuffers, params.format);
70 mCC = new CpuConsumer(consumer, params.maxLockedBuffers);
623 ASSERT_NO_FATAL_FAILURE(configureANW(mANW, params, params.maxLockedBuffers + 1));
630 for (int i = 0; i < params.maxLockedBuffers + 1; i++) {
638 CpuConsumer::LockedBuffer *b = new CpuConsumer::LockedBuffer[params.maxLockedBuffers];
639 for (int i = 0; i < params.maxLockedBuffers; i++) {
654 ALOGV("Locking frame %d (too many)", params.maxLockedBuffers);
663 ALOGV("Locking frame %d (should work now)", params.maxLockedBuffers);
    [all...]

Completed in 516 milliseconds