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

  /frameworks/av/media/libstagefright/omx/
GraphicBufferSource.cpp 798 uint64_t slotMask;
799 if (mConsumer->getReleasedBuffers(&slotMask) != NO_ERROR) {
801 slotMask = 0xffffffffffffffffULL;
804 ALOGV("onBuffersReleased: 0x%016" PRIx64, slotMask);
807 if ((slotMask & 0x01) != 0) {
810 slotMask >>= 1;
  /frameworks/native/libs/gui/
IGraphicBufferConsumer.cpp 295 virtual status_t getReleasedBuffers(uint64_t* slotMask) {
297 if (slotMask == NULL) {
298 ALOGE("getReleasedBuffers: slotMask must not be NULL");
306 *slotMask = reply.readInt64();
481 uint64_t slotMask;
482 status_t result = getReleasedBuffers(&slotMask);
483 reply->writeInt64(slotMask);
  /frameworks/native/include/gui/
IGraphicBufferConsumer.h 227 // getReleasedBuffers sets the value pointed to by slotMask to a bit set.
236 virtual status_t getReleasedBuffers(uint64_t* slotMask) = 0;

Completed in 3529 milliseconds