Home
last modified time | relevance | path

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

/frameworks/native/libs/gui/
DIGraphicBufferProducerFlattenables.cpp41 size_t IGraphicBufferProducer::QueueBufferInput::getFdCount() const { in getFdCount() function in android::IGraphicBufferProducer::QueueBufferInput
42 return fence->getFdCount(); in getFdCount()
124 size_t IGraphicBufferProducer::QueueBufferOutput::getFdCount() const { in getFdCount() function in android::IGraphicBufferProducer::QueueBufferOutput
125 return frameTimestamps.getFdCount(); in getFdCount()
184 size_t IGraphicBufferProducer::RequestBufferOutput::getFdCount() const { in getFdCount() function in android::IGraphicBufferProducer::RequestBufferOutput
185 return (buffer == nullptr ? 0 : buffer->getFdCount()); in getFdCount()
275 size_t IGraphicBufferProducer::DequeueBufferOutput::getFdCount() const { in getFdCount() function in android::IGraphicBufferProducer::DequeueBufferOutput
276 return fence->getFdCount() + in getFdCount()
277 (timestamps.has_value() ? timestamps->getFdCount() : 0); in getFdCount()
361 size_t IGraphicBufferProducer::CancelBufferInput::getFdCount() const { in getFdCount() function in android::IGraphicBufferProducer::CancelBufferInput
[all …]
DBufferItem.cpp108 size_t BufferItem::getFdCount() const { in getFdCount() function in android::BufferItem
111 count += mGraphicBuffer->getFdCount(); in getFdCount()
114 count += mFence->getFdCount(); in getFdCount()
DFrameTimestamps.cpp547 size_t FrameEventsDelta::getFdCount() const { in getFdCount() function in android::FrameEventsDelta
551 return a + fence->getFdCount(); in getFdCount()
557 if (size < getFlattenedSize() || count < getFdCount()) { in flatten()
659 size_t FrameEventHistoryDelta::getFdCount() const { in getFdCount() function in android::FrameEventHistoryDelta
662 return a + delta.getFdCount(); in getFdCount()
/frameworks/native/libs/gui/include/gui/bufferqueue/1.0/
DConversion.h374 size_t getFdCount(HGraphicBufferProducer::FenceTimeSnapshot const& t);
429 size_t getFdCount(HGraphicBufferProducer::FrameEventsDelta const& t);
486 size_t getFdCount(
623 size_t getFdCount(
/frameworks/native/libs/ui/
DFence.cpp156 size_t Fence::getFdCount() const { in getFdCount() function in android::Fence
161 if (size < getFlattenedSize() || count < getFdCount()) { in flatten()
166 FlattenableUtils::write(buffer, size, static_cast<uint32_t>(getFdCount())); in flatten()
DFenceTime.cpp239 size_t FenceTime::Snapshot::getFdCount() const { in getFdCount() function in android::FenceTime::Snapshot
240 return state == State::FENCE ? fence->getFdCount() : 0u; in getFdCount()
DGraphicBuffer.cpp360 size_t GraphicBuffer::getFdCount() const { in getFdCount() function in android::GraphicBuffer
368 size_t fdCountNeeded = GraphicBuffer::getFdCount(); in flatten()
/frameworks/native/libs/gui/bufferqueue/1.0/
DConversion.cpp440 size_t const baseNumFds = l.getFdCount(); in wrapAs()
561 size_t getFdCount( in getFdCount() function
694 size_t getFdCount( in getFdCount() function
696 return getFdCount(t.gpuCompositionDoneFence) + in getFdCount()
697 getFdCount(t.displayPresentFence) + in getFdCount()
698 getFdCount(t.displayRetireFence) + in getFdCount()
699 getFdCount(t.releaseFence); in getFdCount()
854 size_t getFdCount( in getFdCount() function
858 numFds += getFdCount(t.deltas[i]); in getFdCount()
966 size_t const baseNumFds = l.getFdCount(); in wrapAs()
[all …]
DH2BGraphicBufferProducer.cpp316 size_t const baseNumFds = l.getFdCount(); in wrapAs()
547 size_t const baseNumFds = l.getFdCount(); in wrapAs()
604 inline size_t getFdCount( in getFdCount() function
699 inline size_t getFdCount( in getFdCount() function
701 return getFdCount(t.gpuCompositionDoneFence) + in getFdCount()
702 getFdCount(t.displayPresentFence) + in getFdCount()
703 getFdCount(t.displayRetireFence) + in getFdCount()
704 getFdCount(t.releaseFence); in getFdCount()
802 inline size_t getFdCount( in getFdCount() function
806 numFds += getFdCount(t.deltas[i]); in getFdCount()
[all …]
/frameworks/native/libs/gui/include/gui/
DIGraphicBufferProducer.h355 size_t getFdCount() const;
392 size_t getFdCount() const;
685 size_t getFdCount() const;
723 size_t getFdCount() const;
786 size_t getFdCount() const;
DBufferItem.h40 size_t getFdCount() const;
DFrameTimestamps.h264 size_t getFdCount() const;
324 size_t getFdCount() const;
/frameworks/native/libs/ui/include_vndk/ui/
DFence.h140 size_t getFdCount() const;
DFenceTime.h66 size_t getFdCount() const;
DGraphicBuffer.h208 size_t getFdCount() const;
/frameworks/native/libs/ui/include/ui/
DFence.h140 size_t getFdCount() const;
DFenceTime.h66 size_t getFdCount() const;
DGraphicBuffer.h208 size_t getFdCount() const;
/frameworks/base/core/jni/
Dandroid_database_CursorWindow.cpp70 static int getFdCount() { in getFdCount() function
123 status, getFdCount()); in nativeCreateFromParcel()
/frameworks/native/libs/binder/tests/parcel_fuzzer/
Dbinder.cpp49 size_t getFdCount() const { return 0; } in getFdCount() function
/frameworks/native/include/binder/
DParcel.h1173 virtual size_t getFdCount() const = 0;
1197 virtual size_t getFdCount() const {
1198 return val.getFdCount();
/frameworks/native/libs/binder/include/binder/
DParcel.h1173 virtual size_t getFdCount() const = 0;
1197 virtual size_t getFdCount() const {
1198 return val.getFdCount();
/frameworks/native/libs/binder/tests/
DbinderSafeInterfaceTest.cpp90 size_t getFdCount() const { return 0; } in getFdCount() function
120 size_t getFdCount() const { return 0; } in getFdCount() function in android::tests::TestLightRefBaseFlattenable
/frameworks/native/libs/nativewindow/
DAHardwareBuffer.cpp246 size_t fdCount = gBuffer->getFdCount(); in AHardwareBuffer_sendHandleToUnixSocket()
/frameworks/native/libs/binder/
DParcel.cpp1270 const size_t fd_count = val.getFdCount(); in write()