Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/bqhelper/include/media/stagefright/bqhelper/
DConversion.h389 size_t getFdCount(HGraphicBufferProducer::FenceTimeSnapshot const& t);
444 size_t getFdCount(HGraphicBufferProducer::FrameEventsDelta const& t);
501 size_t getFdCount(
638 size_t getFdCount(
/frameworks/native/libs/ui/
DFence.cpp138 size_t Fence::getFdCount() const { in getFdCount() function in android::Fence
143 if (size < getFlattenedSize() || count < getFdCount()) { in flatten()
148 FlattenableUtils::write(buffer, size, static_cast<uint32_t>(getFdCount())); in flatten()
DFenceTime.cpp223 size_t FenceTime::Snapshot::getFdCount() const { in getFdCount() function in android::FenceTime::Snapshot
224 return state == State::FENCE ? fence->getFdCount() : 0u; in getFdCount()
DGraphicBuffer.cpp334 size_t GraphicBuffer::getFdCount() const { in getFdCount() function in android::GraphicBuffer
342 size_t fdCountNeeded = GraphicBuffer::getFdCount(); in flatten()
/frameworks/av/media/libstagefright/bqhelper/
DConversion.cpp454 size_t const baseNumFds = l.getFdCount(); in wrapAs()
575 size_t getFdCount( in getFdCount() function
708 size_t getFdCount( in getFdCount() function
710 return getFdCount(t.gpuCompositionDoneFence) + in getFdCount()
711 getFdCount(t.displayPresentFence) + in getFdCount()
712 getFdCount(t.displayRetireFence) + in getFdCount()
713 getFdCount(t.releaseFence); in getFdCount()
868 size_t getFdCount( in getFdCount() function
872 numFds += getFdCount(t.deltas[i]); in getFdCount()
980 size_t const baseNumFds = l.getFdCount(); in wrapAs()
[all …]
/frameworks/native/libs/gui/bufferqueue/1.0/
DH2BGraphicBufferProducer.cpp311 size_t const baseNumFds = l.getFdCount(); in wrapAs()
542 size_t const baseNumFds = l.getFdCount(); in wrapAs()
599 inline size_t getFdCount( in getFdCount() function
694 inline 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()
797 inline size_t getFdCount( in getFdCount() function
801 numFds += getFdCount(t.deltas[i]); in getFdCount()
[all …]
/frameworks/native/libs/gui/
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.cpp535 size_t FrameEventsDelta::getFdCount() const { in getFdCount() function in android::FrameEventsDelta
539 return a + fence->getFdCount(); in getFdCount()
545 if (size < getFlattenedSize() || count < getFdCount()) { in flatten()
647 size_t FrameEventHistoryDelta::getFdCount() const { in getFdCount() function in android::FrameEventHistoryDelta
650 return a + delta.getFdCount(); in getFdCount()
DIGraphicBufferProducer.cpp1034 size_t IGraphicBufferProducer::QueueBufferInput::getFdCount() const { in getFdCount() function in android::IGraphicBufferProducer::QueueBufferInput
1035 return fence->getFdCount(); in getFdCount()
1109 size_t IGraphicBufferProducer::QueueBufferOutput::getFdCount() const { in getFdCount() function in android::IGraphicBufferProducer::QueueBufferOutput
1110 return frameTimestamps.getFdCount(); in getFdCount()
/frameworks/native/libs/gui/include/gui/
DBufferItem.h40 size_t getFdCount() const;
DIGraphicBufferProducer.h359 size_t getFdCount() const;
396 size_t getFdCount() const;
DFrameTimestamps.h262 size_t getFdCount() const;
322 size_t getFdCount() const;
/frameworks/native/libs/ui/include_vndk/ui/
DFence.h134 size_t getFdCount() const;
DFenceTime.h65 size_t getFdCount() const;
DGraphicBuffer.h190 size_t getFdCount() const;
/frameworks/native/libs/ui/include/ui/
DFence.h134 size_t getFdCount() const;
DFenceTime.h65 size_t getFdCount() const;
DGraphicBuffer.h190 size_t getFdCount() const;
/frameworks/base/core/jni/
Dandroid_database_CursorWindow.cpp70 static int getFdCount() { in getFdCount() function
111 status, getFdCount()); in nativeCreateFromParcel()
/frameworks/native/libs/binder/include/binder/
DParcel.h508 virtual size_t getFdCount() const = 0;
532 virtual size_t getFdCount() const { in getFdCount() function
533 return val.getFdCount(); in getFdCount()
/frameworks/native/libs/nativewindow/
DAHardwareBuffer.cpp155 size_t fdCount = gBuffer->getFdCount(); in AHardwareBuffer_sendHandleToUnixSocket()
/frameworks/native/libs/binder/tests/
DbinderSafeInterfaceTest.cpp87 size_t getFdCount() const { return 0; } in getFdCount() function
117 size_t getFdCount() const { return 0; } in getFdCount() function in android::tests::TestLightRefBaseFlattenable
/frameworks/native/libs/binder/
DParcel.cpp1265 const size_t fd_count = val.getFdCount(); in write()