Lines Matching defs:get
469 * Encoder get
768 /* From the latest valid found, get the next valid modifier */
1008 /* The DRM read semantics guarantees that we always get only
1676 struct drm_mode_get_lease get;
1680 memclear(get);
1682 if (DRM_IOCTL(fd, DRM_IOCTL_MODE_GET_LEASE, &get))
1685 count = get.count_objects;
1690 get.objects_ptr = VOID2U64(&ret->objects[0]);
1691 if (DRM_IOCTL(fd, DRM_IOCTL_MODE_GET_LEASE, &get)) {
1719 struct drm_mode_fb_cmd2 get = {
1725 err = DRM_IOCTL(fd, DRM_IOCTL_MODE_GETFB2, &get);
1734 ret->width = get.width;
1735 ret->height = get.height;
1736 ret->pixel_format = get.pixel_format;
1737 ret->flags = get.flags;
1738 ret->modifier = get.modifier[0];
1739 memcpy(ret->handles, get.handles, sizeof(uint32_t) * 4);
1740 memcpy(ret->pitches, get.pitches, sizeof(uint32_t) * 4);
1741 memcpy(ret->offsets, get.offsets, sizeof(uint32_t) * 4);