Home
last modified time | relevance | path

Searched refs:drm_ctx (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/dev/drm2/
H A Ddrm.h412 struct drm_ctx { struct
422 struct drm_ctx __user *contexts; argument
675 #define DRM_IOCTL_ADD_CTX DRM_IOWR(0x20, struct drm_ctx)
676 #define DRM_IOCTL_RM_CTX DRM_IOWR(0x21, struct drm_ctx)
677 #define DRM_IOCTL_MOD_CTX DRM_IOW( 0x22, struct drm_ctx)
678 #define DRM_IOCTL_GET_CTX DRM_IOWR(0x23, struct drm_ctx)
679 #define DRM_IOCTL_SWITCH_CTX DRM_IOW( 0x24, struct drm_ctx)
680 #define DRM_IOCTL_NEW_CTX DRM_IOW( 0x25, struct drm_ctx)
818 typedef struct drm_ctx drm_ctx_t;
H A Ddrm_context.c322 struct drm_ctx ctx; in drm_resctx()
353 struct drm_ctx *ctx = data; in drm_addctx()
402 struct drm_ctx *ctx = data; in drm_getctx()
424 struct drm_ctx *ctx = data; in drm_switchctx()
444 struct drm_ctx *ctx = data; in drm_newctx()
466 struct drm_ctx *ctx = data; in drm_rmctx()
H A Ddrm_ioc32.c501 res.contexts = (struct drm_ctx __user *)(unsigned long)res32->contexts; in compat_drm_resctx()