Home
last modified time | relevance | path

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

/hardware/google/av/codec2/vndk/include/
DC2AllocatorGralloc.h55 class C2AllocatorGralloc : public C2Allocator {
71 C2AllocatorGralloc(id_t id, bool bufferQueue = false);
75 virtual ~C2AllocatorGralloc() override;
/hardware/google/av/codec2/vndk/
DC2AllocatorGralloc.cpp588 class C2AllocatorGralloc::Impl {
630 C2AllocatorGralloc::Impl::Impl(id_t id, bool bufferQueue) in Impl()
645 c2_status_t C2AllocatorGralloc::Impl::newGraphicAllocation( in newGraphicAllocation()
708 c2_status_t C2AllocatorGralloc::Impl::priorGraphicAllocation( in priorGraphicAllocation()
732 C2AllocatorGralloc::C2AllocatorGralloc(id_t id, bool bufferQueue) in C2AllocatorGralloc() function in android::C2AllocatorGralloc
735 C2AllocatorGralloc::~C2AllocatorGralloc() { delete mImpl; } in ~C2AllocatorGralloc()
737 C2Allocator::id_t C2AllocatorGralloc::getId() const { in getId()
741 C2String C2AllocatorGralloc::getName() const { in getName()
745 std::shared_ptr<const C2Allocator::Traits> C2AllocatorGralloc::getTraits() const { in getTraits()
749 c2_status_t C2AllocatorGralloc::newGraphicAllocation( in newGraphicAllocation()
[all …]
DAndroid.bp20 "C2AllocatorGralloc.cpp",
DC2Buffer.cpp33 using android::C2AllocatorGralloc;
1116 static std::unique_ptr<C2AllocatorGralloc> sAllocator = std::make_unique<C2AllocatorGralloc>(0); in CreateGraphicBlock()
1119 if (C2AllocatorGralloc::isValid(cHandle)) { in CreateGraphicBlock()
DC2Store.cpp227 allocator = std::make_shared<C2AllocatorGralloc>(C2PlatformAllocatorStore::GRALLOC); in fetchGrallocAllocator()
239 allocator = std::make_shared<C2AllocatorGralloc>( in fetchBufferQueueAllocator()
/hardware/google/av/codec2/vndk/platform/
DC2BqBuffer.cpp32 using ::android::C2AllocatorGralloc;
145 static std::unique_ptr<C2AllocatorGralloc> sAllocator = std::make_unique<C2AllocatorGralloc>(0); in CreateGraphicBlock()
148 if (C2AllocatorGralloc::isValid(handle)) { in CreateGraphicBlock()
/hardware/google/av/codec2/tests/vndk/
DC2BufferTest.cpp239 mGraphicAllocator(std::make_shared<C2AllocatorGralloc>('g')) { in C2BufferTest()