Home
last modified time | relevance | path

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

/frameworks/native/libs/ui/
DFence.cpp133 size_t Fence::getFdCount() const { in getFdCount() function in android::Fence
138 if (size < getFlattenedSize() || count < getFdCount()) { in flatten()
141 FlattenableUtils::write(buffer, size, (uint32_t)getFdCount()); in flatten()
DGraphicBuffer.cpp262 size_t GraphicBuffer::getFdCount() const { in getFdCount() function in android::GraphicBuffer
270 size_t fdCountNeeded = GraphicBuffer::getFdCount(); in flatten()
/frameworks/native/libs/gui/
DBufferItem.cpp83 size_t BufferItem::getFdCount() const { in getFdCount() function in android::BufferItem
86 c += mGraphicBuffer->getFdCount(); in getFdCount()
89 c += mFence->getFdCount(); in getFdCount()
DIGraphicBufferConsumer.cpp77 size_t IGraphicBufferConsumer::BufferItem::getFdCount() const { in getFdCount() function in android::IGraphicBufferConsumer::BufferItem
80 c += mGraphicBuffer->getFdCount(); in getFdCount()
83 c += mFence->getFdCount(); in getFdCount()
DIGraphicBufferProducer.cpp443 size_t IGraphicBufferProducer::QueueBufferInput::getFdCount() const { in getFdCount() function in android::IGraphicBufferProducer::QueueBufferInput
444 return fence->getFdCount(); in getFdCount()
/frameworks/native/include/gui/
DBufferItem.h39 size_t getFdCount() const;
DIGraphicBufferConsumer.h50 size_t getFdCount() const;
DIGraphicBufferProducer.h302 size_t getFdCount() const;
/frameworks/native/include/ui/
DFence.h98 size_t getFdCount() const;
DGraphicBuffer.h116 size_t getFdCount() const;
/frameworks/native/include/binder/
DParcel.h290 virtual size_t getFdCount() const = 0;
305 virtual size_t getFdCount() const { in getFdCount() function
306 return val.getFdCount(); in getFdCount()
/frameworks/native/libs/binder/
DParcel.cpp884 const size_t fd_count = val.getFdCount(); in write()