Home
last modified time | relevance | path

Searched refs:getFdCount (Results 1 – 10 of 10) sorted by relevance

/frameworks/native/libs/ui/
DFence.cpp136 size_t Fence::getFdCount() const { in getFdCount() function in android::Fence
141 if (size < getFlattenedSize() || count < getFdCount()) { in flatten()
146 FlattenableUtils::write(buffer, size, static_cast<uint32_t>(getFdCount())); in flatten()
DGraphicBuffer.cpp286 size_t GraphicBuffer::getFdCount() const { in getFdCount() function in android::GraphicBuffer
294 size_t fdCountNeeded = GraphicBuffer::getFdCount(); in flatten()
/frameworks/native/libs/gui/
DBufferItem.cpp87 size_t BufferItem::getFdCount() const { in getFdCount() function in android::BufferItem
90 count += mGraphicBuffer->getFdCount(); in getFdCount()
93 count += mFence->getFdCount(); in getFdCount()
DIGraphicBufferProducer.cpp718 size_t IGraphicBufferProducer::QueueBufferInput::getFdCount() const { in getFdCount() function in android::IGraphicBufferProducer::QueueBufferInput
719 return fence->getFdCount(); in getFdCount()
/frameworks/native/include/ui/
DFence.h98 size_t getFdCount() const;
DGraphicBuffer.h131 size_t getFdCount() const;
/frameworks/native/include/gui/
DBufferItem.h40 size_t getFdCount() const;
DIGraphicBufferProducer.h332 size_t getFdCount() const;
/frameworks/native/include/binder/
DParcel.h457 virtual size_t getFdCount() const = 0;
472 virtual size_t getFdCount() const { in getFdCount() function
473 return val.getFdCount(); in getFdCount()
/frameworks/native/libs/binder/
DParcel.cpp1272 const size_t fd_count = val.getFdCount(); in write()