Lines Matching refs:dev
43 static int alloc_device_alloc(alloc_device_t *dev, int w, int h, int format, int usage, buffer_hand… in alloc_device_alloc() argument
49 if (!dev || !pHandle || !pStride) in alloc_device_alloc()
54 m = reinterpret_cast<private_module_t *>(dev->common.module); in alloc_device_alloc()
132 static int alloc_device_free(alloc_device_t *dev, buffer_handle_t handle) in alloc_device_free() argument
140 private_module_t *m = reinterpret_cast<private_module_t *>(dev->common.module); in alloc_device_free()
159 alloc_device_t *dev; in alloc_device_open() local
163 dev = new alloc_device_t; in alloc_device_open()
165 if (NULL == dev) in alloc_device_open()
171 memset(dev, 0, sizeof(*dev)); in alloc_device_open()
174 dev->common.tag = HARDWARE_DEVICE_TAG; in alloc_device_open()
175 dev->common.version = 0; in alloc_device_open()
176 dev->common.module = const_cast<hw_module_t *>(module); in alloc_device_open()
177 dev->common.close = mali_gralloc_ion_device_close; in alloc_device_open()
178 dev->alloc = alloc_device_alloc; in alloc_device_open()
179 dev->free = alloc_device_free; in alloc_device_open()
181 *device = &dev->common; in alloc_device_open()