Home
last modified time | relevance | path

Searched refs:C2AllocatorGralloc (Results 1 – 7 of 7) sorted by relevance

/frameworks/av/media/codec2/vndk/include/
DC2AllocatorGralloc.h65 class C2AllocatorGralloc : public C2Allocator {
81 C2AllocatorGralloc(id_t id, bool bufferQueue = false);
85 virtual ~C2AllocatorGralloc() override;
/frameworks/av/media/codec2/vndk/
DC2AllocatorGralloc.cpp869 class C2AllocatorGralloc::Impl {
913 C2AllocatorGralloc::Impl::Impl(id_t id, bool bufferQueue) in Impl()
936 c2_status_t C2AllocatorGralloc::Impl::newGraphicAllocation( in newGraphicAllocation()
1063 c2_status_t C2AllocatorGralloc::Impl::priorGraphicAllocation( in priorGraphicAllocation()
1115 C2AllocatorGralloc::C2AllocatorGralloc(id_t id, bool bufferQueue) in C2AllocatorGralloc() function in android::C2AllocatorGralloc
1118 C2AllocatorGralloc::~C2AllocatorGralloc() { delete mImpl; } in ~C2AllocatorGralloc()
1120 C2Allocator::id_t C2AllocatorGralloc::getId() const { in getId()
1124 C2String C2AllocatorGralloc::getName() const { in getName()
1128 std::shared_ptr<const C2Allocator::Traits> C2AllocatorGralloc::getTraits() const { in getTraits()
1132 c2_status_t C2AllocatorGralloc::newGraphicAllocation( in newGraphicAllocation()
[all …]
DAndroid.bp23 "C2AllocatorGralloc.cpp",
DC2Buffer.cpp33 using android::C2AllocatorGralloc;
1107 static std::unique_ptr<C2AllocatorGralloc> sAllocator = std::make_unique<C2AllocatorGralloc>(0); in CreateGraphicBlock()
1110 if (C2AllocatorGralloc::isValid(cHandle)) { in CreateGraphicBlock()
DC2Store.cpp231 allocator = std::make_shared<C2AllocatorGralloc>(C2PlatformAllocatorStore::GRALLOC); in fetchGrallocAllocator()
243 allocator = std::make_shared<C2AllocatorGralloc>( in fetchBufferQueueAllocator()
/frameworks/av/media/codec2/vndk/platform/
DC2BqBuffer.cpp38 using ::android::C2AllocatorGralloc;
223 static std::unique_ptr<C2AllocatorGralloc> sAllocator = std::make_unique<C2AllocatorGralloc>(0); in CreateGraphicBlock()
226 if (C2AllocatorGralloc::isValid(handle)) { in CreateGraphicBlock()
/frameworks/av/media/codec2/tests/vndk/
DC2BufferTest.cpp239 mGraphicAllocator(std::make_shared<C2AllocatorGralloc>('g')) { in C2BufferTest()