Lines Matching refs:device
57 /** State information for each device instance */
59 struct copybit_device_t device;
71 struct hw_device_t** device);
514 /** Close the copybit device */
525 /** Open a new instance of a copybit device using name */
527 struct hw_device_t** device)
534 ctx->device.common.tag = HARDWARE_DEVICE_TAG;
535 ctx->device.common.version = 1;
536 ctx->device.common.module = const_cast<hw_module_t*>(module);
537 ctx->device.common.close = close_copybit;
538 ctx->device.set_parameter = set_parameter_copybit;
539 ctx->device.get = get;
540 ctx->device.blit = blit_copybit;
541 ctx->device.stretch = stretch_copybit;
542 ctx->device.finish = finish_copybit;
568 *device = &ctx->device.common;
570 close_copybit(&ctx->device.common);