HomeSort by relevance Sort by last modified time
    Searched defs:drm_version (Results 1 - 11 of 11) sorted by null

  /cts/hostsidetests/securitybulletin/securityPatch/CVE-2017-6262/
poc.c 31 static int drm_version(int fd) { function
32 struct drm_version ver;
85 drm_version(fd);
local_poc.h 63 struct drm_version { struct
212 #define DRM_IOCTL_VERSION DRM_IOWR(0x00, struct drm_version)
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_screen.h 78 uint32_t drm_version; member in struct:etna_screen
  /external/minigbm/
amdgpu.c 33 int drm_version; member in struct:amdgpu_priv
47 drmVersionPtr drm_version; local
55 drm_version = drmGetVersion(drv_get_fd(drv));
56 if (!drm_version) {
61 priv->drm_version = drm_version->version_minor;
62 drmFreeVersion(drm_version);
166 /* If drm_version >= 21 everything exposes explicit synchronization primitives
168 if (priv->drm_version >= 21) {
drv.c 69 drmVersionPtr drm_version; local
72 drm_version = drmGetVersion(fd);
74 if (!drm_version)
118 if (!strcmp(drm_version->name, backend_list[i]->name)) {
119 drmFreeVersion(drm_version);
123 drmFreeVersion(drm_version);
  /external/libdrm/nouveau/
nouveau.h 66 uint32_t drm_version; /* deprecated */ member in struct:nouveau_device
  /external/mesa3d/src/glx/
dri_glx.c 419 __DRIversion drm_version; local
463 drm_version.major = version->version_major;
464 drm_version.minor = version->version_minor;
465 drm_version.patch = version->version_patchlevel;
469 drm_version.major = -1;
470 drm_version.minor = -1;
471 drm_version.patch = -1;
529 &drm_version,
  /bionic/libc/kernel/uapi/drm/
drm.h 75 struct drm_version { struct
92 struct drm_version __user * version;
444 #define DRM_IOCTL_VERSION DRM_IOWR(0x00, struct drm_version)
572 typedef struct drm_version drm_version_t;
  /external/kernel-headers/original/uapi/drm/
drm.h 139 struct drm_version { struct
163 struct drm_version __user *version;
794 #define DRM_IOCTL_VERSION DRM_IOWR(0x00, struct drm_version)
969 typedef struct drm_version drm_version_t;
  /external/libdrm/include/drm/
drm.h 133 struct drm_version { struct
157 struct drm_version *version;
772 #define DRM_IOCTL_VERSION DRM_IOWR(0x00, struct drm_version)
946 typedef struct drm_version drm_version_t;
  /external/mesa3d/include/drm-uapi/
drm.h 133 struct drm_version { struct
157 struct drm_version *version;
772 #define DRM_IOCTL_VERSION DRM_IOWR(0x00, struct drm_version)
946 typedef struct drm_version drm_version_t;

Completed in 721 milliseconds