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.cpp284 size_t GraphicBuffer::getFdCount() const { in getFdCount() function in android::GraphicBuffer
292 size_t fdCountNeeded = GraphicBuffer::getFdCount(); in flatten()
/frameworks/native/libs/gui/
DBufferItem.cpp81 size_t BufferItem::getFdCount() const { in getFdCount() function in android::BufferItem
84 count += mGraphicBuffer->getFdCount(); in getFdCount()
87 count += mFence->getFdCount(); in getFdCount()
DIGraphicBufferProducer.cpp510 size_t IGraphicBufferProducer::QueueBufferInput::getFdCount() const { in getFdCount() function in android::IGraphicBufferProducer::QueueBufferInput
511 return fence->getFdCount(); in getFdCount()
/frameworks/native/include/gui/
DBufferItem.h40 size_t getFdCount() const;
DIGraphicBufferProducer.h307 size_t getFdCount() const;
/frameworks/native/include/ui/
DFence.h98 size_t getFdCount() const;
DGraphicBuffer.h131 size_t getFdCount() const;
/frameworks/native/include/binder/
DParcel.h301 virtual size_t getFdCount() const = 0;
316 virtual size_t getFdCount() const { in getFdCount() function
317 return val.getFdCount(); in getFdCount()
/frameworks/native/libs/binder/
DParcel.cpp973 const size_t fd_count = val.getFdCount(); in write()