Lines Matching refs:mGralloc1Device
85 mGrallocModule(nullptr), mAllocDevice(nullptr), mGralloc1Device(nullptr), in GrallocHalWrapper()
115 err = ::gralloc1_open(module, &mGralloc1Device); in GrallocHalWrapper()
121 if (mGralloc1Device == nullptr || mGralloc1Device->getFunction == nullptr) { in GrallocHalWrapper()
127 mPfnRetain = (GRALLOC1_PFN_RETAIN)(mGralloc1Device->getFunction(mGralloc1Device, in GrallocHalWrapper()
129 mPfnRelease = (GRALLOC1_PFN_RELEASE)(mGralloc1Device->getFunction(mGralloc1Device, in GrallocHalWrapper()
131 mPfnLock = (GRALLOC1_PFN_LOCK)(mGralloc1Device->getFunction(mGralloc1Device, in GrallocHalWrapper()
133 mPfnUnlock = (GRALLOC1_PFN_UNLOCK)(mGralloc1Device->getFunction(mGralloc1Device, in GrallocHalWrapper()
136 (mGralloc1Device->getFunction(mGralloc1Device, in GrallocHalWrapper()
151 mGralloc1Device->getCapabilities(mGralloc1Device, &n_cap, caps); in GrallocHalWrapper()
183 return mapGralloc1Error(mPfnRetain(mGralloc1Device, handle)); in registerBuffer()
194 return mapGralloc1Error(mPfnRelease(mGralloc1Device, handle)); in unregisterBuffer()
212 return mapGralloc1Error(mPfnLock(mGralloc1Device, handle, in lock()
228 return mapGralloc1Error(mPfnUnlock(mGralloc1Device, handle, &dummy)); in unlock()
242 return mPfnGetBackingStore(mGralloc1Device, h1, &s1) == GRALLOC1_ERROR_NONE in isSameMemory()
243 && mPfnGetBackingStore(mGralloc1Device, h2, &s2) == GRALLOC1_ERROR_NONE in isSameMemory()