Lines Matching refs:mAllocator
328 : mAllocator(allocator) { } in C2BasicLinearBlockPool()
337 c2_status_t err = mAllocator->newLinearAllocation(capacity, usage, &alloc); in fetchLinearBlock()
436 : mAllocator(allocator) {} in _C2BufferPoolAllocator()
515 const std::shared_ptr<C2Allocator> mAllocator; member in _C2BufferPoolAllocator
548 status = mAllocator->newLinearAllocation( in allocate()
567 status = mAllocator->newGraphicAllocation( in allocate()
630 return mAllocator->priorLinearAllocation(handle, c2Allocation); in priorLinearAllocation()
636 return mAllocator->priorGraphicAllocation(handle, c2Allocation); in priorGraphicAllocation()
644 mAllocator(std::make_shared<_C2BufferPoolAllocator>(allocator)) { in Impl()
645 if (mAllocator && mBufferPoolManager) { in Impl()
647 mAllocator, &mConnectionId) == ResultStatus::OK) { in Impl()
668 mAllocator->getLinearParams(capacity, usage, ¶ms); in fetchLinearBlock()
677 c2_status_t err = mAllocator->priorLinearAllocation(cHandle, &alloc); in fetchLinearBlock()
701 mAllocator->getGraphicParams(width, height, format, usage, ¶ms); in fetchGraphicBlock()
710 c2_status_t err = mAllocator->priorGraphicAllocation( in fetchGraphicBlock()
735 const std::shared_ptr<_C2BufferPoolAllocator> mAllocator; member in C2PooledBlockPool::Impl
740 : mAllocator(allocator), mLocalId(localId), mImpl(new Impl(allocator)) {} in C2PooledBlockPool()
1066 : mAllocator(allocator) {} in C2BasicGraphicBlockPool()
1077 c2_status_t err = mAllocator->newGraphicAllocation(width, height, format, usage, &alloc); in fetchGraphicBlock()