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

  /frameworks/native/include/gui/
IGraphicBufferConsumer.h 172 // getReleasedBuffers sets the value pointed to by slotMask to a bit set.
181 virtual status_t getReleasedBuffers(uint64_t* slotMask) = 0;
  /frameworks/native/libs/gui/
IGraphicBufferConsumer.cpp 148 virtual status_t getReleasedBuffers(uint64_t* slotMask) {
150 if (slotMask == NULL) {
151 ALOGE("getReleasedBuffers: slotMask must not be NULL");
159 *slotMask = static_cast<uint64_t>(reply.readInt64());
352 uint64_t slotMask;
353 status_t result = getReleasedBuffers(&slotMask);
354 reply->writeInt64(static_cast<int64_t>(slotMask));
  /frameworks/av/media/libstagefright/omx/
GraphicBufferSource.cpp 907 uint64_t slotMask;
908 if (mConsumer->getReleasedBuffers(&slotMask) != NO_ERROR) {
910 slotMask = 0xffffffffffffffffULL;
913 ALOGV("onBuffersReleased: 0x%016" PRIx64, slotMask);
916 if ((slotMask & 0x01) != 0) {
919 slotMask >>= 1;
    [all...]

Completed in 80 milliseconds