HomeSort by: relevance | last modified time | path
    Searched defs:out_fence_fd (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/virtio/
virtgpu_ioctl.c 71 int out_fence_fd = -1; local in function:virtio_gpu_execbuffer_ioctl
104 out_fence_fd = get_unused_fd_flags(O_CLOEXEC);
105 if (out_fence_fd < 0)
106 return out_fence_fd;
152 if (out_fence_fd >= 0) {
160 exbuf->fence_fd = out_fence_fd;
161 fd_install(out_fence_fd, sync_file->file);
178 if (out_fence_fd >= 0)
179 put_unused_fd(out_fence_fd);
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gem_execbuffer.c 2611 int out_fence_fd = -1; local in function:i915_gem_do_execbuffer
2678 err = -fd_allocfile(&fp, &out_fence_fd);
2682 out_fence_fd = get_unused_fd_flags(O_CLOEXEC);
2683 if (out_fence_fd < 0) {
2684 err = out_fence_fd;
2795 if (out_fence_fd != -1) {
2831 fd_affix(curproc, fp, out_fence_fd);
2833 fd_install(out_fence_fd, out_fence->file);
2836 args->rsvd2 |= (u64)out_fence_fd << 32;
2837 out_fence_fd = -1
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_execbuf.c 3422 * @out_fence_fd: exported file descriptor for the fence. -1 if not used
3438 int32_t out_fence_fd, struct sync_file *sync_file)
3448 fence_rep.fd = out_fence_fd;
3668 int out_fence_fd = -1; local in function:vmw_execbuf_process
3671 int32_t out_fence_fd = -1; local in function:vmw_execbuf_process
3680 ret = -fd_allocfile(&out_fence_fp, &out_fence_fd);
3684 out_fence_fd = get_unused_fd_flags(O_CLOEXEC);
3685 if (out_fence_fd < 0) {
3687 return out_fence_fd;
3844 fd_abort(curproc, out_fence_fp, out_fence_fd);
    [all...]

Completed in 16 milliseconds