Lines Matching refs:args
38 struct drm_tegra_syncpoint_allocate args;
46 memset(&args, 0, sizeof(args));
48 err = ioctl(drm->fd, DRM_IOCTL_TEGRA_SYNCPOINT_ALLOCATE, &args);
55 syncpt->id = args.id;
65 struct drm_tegra_syncpoint_free args;
72 memset(&args, 0, sizeof(args));
73 args.id = syncpt->id;
75 err = ioctl(drm->fd, DRM_IOCTL_TEGRA_SYNCPOINT_FREE, &args);
87 struct drm_tegra_syncpoint_wait args;
91 memset(&args, 0, sizeof(args));
92 args.timeout_ns = 0;
93 args.id = fence->syncpt;
94 args.threshold = fence->value;
96 err = ioctl(drm->fd, DRM_IOCTL_TEGRA_SYNCPOINT_WAIT, &args);