Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/codec2/vndk/
H A DC2AllocatorGralloc.cpp820 class C2AllocatorGralloc::Impl {
860 C2AllocatorGralloc::Impl::Impl(id_t id, bool bufferQueue) in Impl()
868 c2_status_t C2AllocatorGralloc::Impl::newGraphicAllocation( in newGraphicAllocation()
899 c2_status_t C2AllocatorGralloc::Impl::priorGraphicAllocation( in priorGraphicAllocation()
930 C2AllocatorGralloc::C2AllocatorGralloc(id_t id, bool bufferQueue) in C2AllocatorGralloc() function in android::C2AllocatorGralloc
933 C2AllocatorGralloc::~C2AllocatorGralloc() { delete mImpl; } in ~C2AllocatorGralloc()
935 C2Allocator::id_t C2AllocatorGralloc::getId() const { in getId()
939 C2String C2AllocatorGralloc::getName() const { in getName()
947 c2_status_t C2AllocatorGralloc::newGraphicAllocation( in newGraphicAllocation()
953 c2_status_t C2AllocatorGralloc::priorGraphicAllocation( in priorGraphicAllocation()
[all …]
H A DAndroid.bp35 "C2AllocatorGralloc.cpp",
H A DC2AllocatorBlob.cpp245 return C2AllocatorGralloc::CheckHandle(o) && GetCapacityFromHandle(o, &capacity) == C2_OK; in CheckHandle()
H A DC2Buffer.cpp36 using android::C2AllocatorGralloc;
1133 static std::unique_ptr<C2AllocatorGralloc> sAllocator = std::make_unique<C2AllocatorGralloc>(0); in CreateGraphicBlock()
H A DC2Store.cpp364 allocator = std::make_shared<C2AllocatorGralloc>(C2PlatformAllocatorStore::GRALLOC); in fetchGrallocAllocator()
376 allocator = std::make_shared<C2AllocatorGralloc>( in fetchBufferQueueAllocator()
/aosp12/frameworks/av/media/codec2/vndk/include/
H A DC2AllocatorGralloc.h66 class C2AllocatorGralloc : public C2Allocator {
82 C2AllocatorGralloc(id_t id, bool bufferQueue = false);
86 virtual ~C2AllocatorGralloc() override;
/aosp12/frameworks/av/media/codec2/vndk/platform/
H A DC2BqBuffer.cpp40 using ::android::C2AllocatorGralloc;
127 static std::unique_ptr<C2AllocatorGralloc> sAllocator = std::make_unique<C2AllocatorGralloc>(0); in CreateGraphicBlock()
130 if (C2AllocatorGralloc::CheckHandle(handle)) { in CreateGraphicBlock()
/aosp12/frameworks/av/media/codec2/tests/vndk/
H A DC2BufferTest.cpp239 mGraphicAllocator(std::make_shared<C2AllocatorGralloc>('g')) { in C2BufferTest()