/src/sys/external/bsd/drm2/include/linux/ |
sync_file.h | 1 /* $NetBSD: sync_file.h,v 1.5 2022/07/17 14:11:07 riastradh Exp $ */ 45 struct sync_file; 47 struct sync_file { struct 60 struct sync_file *
|
/src/usr.sbin/rpc.statd/ |
statd.c | 198 sync_file(); 203 /* sync_file --------------------------------------------------------------- */ 209 sync_file() function in typeref:typename:void 505 sync_file(); 541 sync_file(); 555 sync_file();
|
/src/sys/external/bsd/drm2/dist/drm/virtio/ |
virtgpu_ioctl.c | 34 #include <linux/sync_file.h> 69 struct sync_file *sync_file; local in function:virtio_gpu_execbuffer_ioctl 153 sync_file = sync_file_create(&out_fence->f); 154 if (!sync_file) { 161 fd_install(out_fence_fd, sync_file->file);
|
/src/sys/external/bsd/drm2/dist/drm/ |
drm_atomic_uapi.c | 43 #include <linux/sync_file.h> 1053 * merged one, the sync_file framework will handle both cases and use a 1087 struct sync_file *sync_file; member in struct:drm_out_fence_state 1112 fence_state->sync_file = sync_file_create(fence, fp); 1113 if (fence_state->sync_file == NULL) { 1118 fp = NULL; /* sync_file consumes */ 1134 fence_state->sync_file = sync_file_create(fence); 1135 if (!fence_state->sync_file) 1278 fence_state[i].sync_file->file) [all...] |
drm_syncobj.c | 116 * import/export the syncobj's current fence from/to a &sync_file. 134 #include <linux/sync_file.h> 734 struct sync_file *sync_file; local in function:drm_syncobj_export_sync_file 751 sync_file = sync_file_create(fence, fp); 757 if (sync_file == NULL) 762 fp = NULL; /* sync_file consumes */ 778 struct sync_file *sync_file; 788 sync_file = sync_file_create(fence) [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_cs.c | 35 #include <linux/sync_file.h> 1440 struct sync_file *sync_file; local in function:amdgpu_cs_fence_to_handle_ioctl 1478 sync_file = sync_file_create(fence, fp); 1479 if (sync_file == NULL) 1482 fp = NULL; /* consumed by sync_file */ 1497 sync_file = sync_file_create(fence); 1499 if (!sync_file) { 1504 fd_install(fd, sync_file->file);
|
/src/games/sail/ |
sync.c | 153 static char sync_file[NAME_MAX]; local in function:get_sync_file 155 snprintf(sync_file, sizeof(sync_file), _FILE_SYNC, scenario_number); 156 return sync_file; 249 const char *sync_file; local in function:sync_open 254 sync_file = get_sync_file(game); 257 if (stat(sync_file, &tmp) < 0) { 259 sync_fp = fopen(sync_file, "w+"); 262 sync_fp = fopen(sync_file, "r+"); 273 const char *sync_file; local in function:sync_close 327 const char *sync_file; local in function:Sync [all...] |
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_execbuf.c | 32 #include <linux/sync_file.h> 3423 * @sync_file: Only used to clean up in case of an error in this function. 3438 int32_t out_fence_fd, struct sync_file *sync_file) 3477 if (sync_file) 3478 fput(sync_file->file); 3673 struct sync_file *sync_file = NULL; local in function:vmw_execbuf_process 3837 sync_file = sync_file_create(&fence->base, out_fence_fp); 3839 sync_file = sync_file_create(&fence->base) [all...] |