Lines Matching refs:mDevice
46 mDevice(nullptr) in Gralloc1On0Adapter()
63 int error = ::gralloc_open(&(mModule->common), &mDevice); in Gralloc1On0Adapter()
67 ALOGV("Opened gralloc0 device %p", mDevice); in Gralloc1On0Adapter()
73 if (mDevice) { in ~Gralloc1On0Adapter()
74 ALOGV("Closing gralloc0 device %p", mDevice); in ~Gralloc1On0Adapter()
75 ::gralloc_close(mDevice); in ~Gralloc1On0Adapter()
138 if (mDevice != nullptr) { in doGetFunction()
173 if (!mDevice->dump) { in dump()
182 mDevice->dump(mDevice, buffer, BUFFER_LENGTH); in dump()
248 ALOGV("Calling alloc(%p, %u, %u, %i, %u)", mDevice, descriptor->width, in allocate()
250 auto error = mDevice->alloc(mDevice, in allocate()
344 int result = mDevice->free(mDevice, handle); in release()