Lines Matching refs:out_resp

460 	struct drm_mode_get_property *out_resp = data;  in drm_mode_getproperty_ioctl()  local
472 property = drm_property_find(dev, file_priv, out_resp->prop_id); in drm_mode_getproperty_ioctl()
476 strscpy_pad(out_resp->name, property->name, DRM_PROP_NAME_LEN); in drm_mode_getproperty_ioctl()
477 out_resp->flags = property->flags; in drm_mode_getproperty_ioctl()
480 values_ptr = u64_to_user_ptr(out_resp->values_ptr); in drm_mode_getproperty_ioctl()
483 if (i < out_resp->count_values && in drm_mode_getproperty_ioctl()
488 out_resp->count_values = value_count; in drm_mode_getproperty_ioctl()
491 enum_ptr = u64_to_user_ptr(out_resp->enum_blob_ptr); in drm_mode_getproperty_ioctl()
497 if (out_resp->count_enum_blobs < enum_count) in drm_mode_getproperty_ioctl()
509 out_resp->count_enum_blobs = enum_count; in drm_mode_getproperty_ioctl()
521 out_resp->count_enum_blobs = 0; in drm_mode_getproperty_ioctl()
757 struct drm_mode_get_blob *out_resp = data; in drm_mode_getblob_ioctl() local
764 blob = drm_property_lookup_blob(dev, out_resp->blob_id); in drm_mode_getblob_ioctl()
768 if (out_resp->length == blob->length) { in drm_mode_getblob_ioctl()
769 if (copy_to_user(u64_to_user_ptr(out_resp->data), in drm_mode_getblob_ioctl()
776 out_resp->length = blob->length; in drm_mode_getblob_ioctl()
786 struct drm_mode_create_blob *out_resp = data; in drm_mode_createblob_ioctl() local
793 blob = drm_property_create_blob(dev, out_resp->length, NULL); in drm_mode_createblob_ioctl()
798 u64_to_user_ptr(out_resp->data), in drm_mode_createblob_ioctl()
799 out_resp->length)) { in drm_mode_createblob_ioctl()
808 out_resp->blob_id = blob->base.id; in drm_mode_createblob_ioctl()
822 struct drm_mode_destroy_blob *out_resp = data; in drm_mode_destroyblob_ioctl() local
830 blob = drm_property_lookup_blob(dev, out_resp->blob_id); in drm_mode_destroyblob_ioctl()