Home
last modified time | relevance | path

Searched refs:new_handle (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkSemaphoreExternalFuchsia.hpp58 VkResult importHandle(zx_handle_t new_handle) override in importHandle() argument
61 handle = new_handle; in importHandle()
67 zx_handle_t new_handle = ZX_HANDLE_INVALID; in exportHandle() local
68 zx_status_t status = zx_handle_duplicate(handle, ZX_RIGHT_SAME_RIGHTS, &new_handle); in exportHandle()
74 *pHandle = new_handle; in exportHandle()
/third_party/mesa3d/src/drm-shim/
Ddevice.c385 for (int new_handle = 1; ; new_handle++) { in drm_shim_bo_get_handle() local
386 void *key = (void *)(uintptr_t)new_handle; in drm_shim_bo_get_handle()
391 return new_handle; in drm_shim_bo_get_handle()
/third_party/mesa3d/src/freedreno/drm/msm/
Dmsm_bo.c168 new_handle(struct fd_device *dev, uint32_t size, uint32_t flags, uint32_t *handle) in new_handle() function
202 ret = new_handle(dev, size, flags, &handle); in msm_bo_new()
/third_party/mesa3d/src/vulkan/runtime/
Dvk_drm_syncobj.c301 uint32_t new_handle; in vk_drm_syncobj_import_opaque_fd() local
302 int err = drmSyncobjFDToHandle(device->drm_fd, fd, &new_handle); in vk_drm_syncobj_import_opaque_fd()
311 sobj->syncobj = new_handle; in vk_drm_syncobj_import_opaque_fd()
/third_party/python/Lib/multiprocessing/
Dspawn.py107 new_handle = reduction.duplicate(pipe_handle,
109 fd = msvcrt.open_osfhandle(new_handle, os.O_RDONLY)
/third_party/gstreamer/gstplugins_good/sys/rpicamsrc/
DRaspiCapture.c773 FILE *new_handle = NULL;
788 new_handle = fopen(filename, "wb");
792 if (new_handle)
801 return new_handle;
813 FILE *new_handle = NULL;
828 new_handle = fopen(filename, "wb");
832 if (new_handle)
841 return new_handle;
/third_party/mesa3d/src/gallium/frontends/nine/
Dswapchain9.c850 D3DWindowBuffer *new_handle; in present() local
852 create_present_buffer(This, target_width, target_height, &new_resource, &new_handle); in present()
854 if (new_handle) { in present()
856 This->present_handles[0] = new_handle; in present()