Home
last modified time | relevance | path

Searched refs:C2AllocatorIon (Results 1 – 10 of 10) sorted by relevance

/hardware/google/av/codec2/vndk/
DC2AllocatorIon.cpp412 C2AllocatorIon::C2AllocatorIon(id_t id) in C2AllocatorIon() function in android::C2AllocatorIon
429 C2AllocatorIon::~C2AllocatorIon() { in ~C2AllocatorIon()
435 C2Allocator::id_t C2AllocatorIon::getId() const { in getId()
440 C2String C2AllocatorIon::getName() const { in getName()
445 std::shared_ptr<const C2Allocator::Traits> C2AllocatorIon::getTraits() const { in getTraits()
450 void C2AllocatorIon::setUsageMapper( in setUsageMapper()
464 std::size_t C2AllocatorIon::MapperKeyHash::operator()(const MapperKey &k) const { in operator ()()
468 c2_status_t C2AllocatorIon::mapUsage( in mapUsage()
504 c2_status_t C2AllocatorIon::newLinearAllocation( in newLinearAllocation()
532 c2_status_t C2AllocatorIon::priorLinearAllocation( in priorLinearAllocation()
[all …]
DC2Store.cpp130 std::weak_ptr<C2AllocatorIon> gIonAllocator;
133 const std::shared_ptr<C2AllocatorIon> allocator, in UseComponentStoreForIonAllocator()
135 C2AllocatorIon::UsageMapperFn mapper; in UseComponentStoreForIonAllocator()
195 std::shared_ptr<C2AllocatorIon> allocator; in setComponentStore()
207 std::shared_ptr<C2AllocatorIon> allocator = gIonAllocator.lock(); in fetchIonAllocator()
214 allocator = std::make_shared<C2AllocatorIon>(C2PlatformAllocatorStore::ION); in fetchIonAllocator()
DAndroid.bp19 "C2AllocatorIon.cpp",
DC2Buffer.cpp34 using android::C2AllocatorIon;
396 static std::unique_ptr<C2AllocatorIon> sAllocator = std::make_unique<C2AllocatorIon>(0); in CreateLinearBlock()
399 if (C2AllocatorIon::isValid(handle)) { in CreateLinearBlock()
412 static std::unique_ptr<C2AllocatorIon> sAllocator = std::make_unique<C2AllocatorIon>(0); in CreateLinearBlock()
415 if (C2AllocatorIon::isValid(cHandle)) { in CreateLinearBlock()
/hardware/google/av/codec2/vndk/include/
DC2AllocatorIon.h30 class C2AllocatorIon : public C2Allocator {
54 C2AllocatorIon(id_t id);
58 virtual ~C2AllocatorIon() override;
/hardware/google/av/codec2/hidl/1.0/mts/audio/
DMtsHidlC2V1_0TargetAudioEncTest.cpp33 using android::C2AllocatorIon;
DMtsHidlC2V1_0TargetAudioDecTest.cpp33 using android::C2AllocatorIon;
/hardware/google/av/codec2/hidl/1.0/mts/video/
DMtsHidlC2V1_0TargetVideoEncTest.cpp32 using android::C2AllocatorIon;
DMtsHidlC2V1_0TargetVideoDecTest.cpp32 using android::C2AllocatorIon;
/hardware/google/av/codec2/tests/vndk/
DC2BufferTest.cpp236 mLinearAllocator(std::make_shared<C2AllocatorIon>('i')), in C2BufferTest()