Searched refs:exportSync (Results 1 – 3 of 3) sorted by relevance
661 struct gfxstreamCreateExportSync exportSync = { }; in createNativeSync_virtioGpu() local662 exportSync.hdr.opCode = GFXSTREAM_CREATE_EXPORT_SYNC; in createNativeSync_virtioGpu()663 exportSync.syncHandleLo = (uint32_t)sync_handle; in createNativeSync_virtioGpu()664 exportSync.syncHandleHi = (uint32_t)(sync_handle >> 32); in createNativeSync_virtioGpu()667 exec.command = static_cast<void*>(&exportSync); in createNativeSync_virtioGpu()668 exec.command_size = sizeof(exportSync); in createNativeSync_virtioGpu()
943 DECODE(exportSync, gfxstream::gfxstreamCreateExportSync, buffer) in submitCmd()946 convert32to64(exportSync.syncHandleLo, exportSync.syncHandleHi); in submitCmd()
758 struct gfxstreamCreateExportSyncVK exportSync = {}; in createFence() local763 exportSync.hdr.opCode = GFXSTREAM_CREATE_EXPORT_SYNC_VK; in createFence()764 exportSync.deviceHandleLo = (uint32_t)hostDeviceHandle; in createFence()765 exportSync.deviceHandleHi = (uint32_t)(hostDeviceHandle >> 32); in createFence()766 exportSync.fenceHandleLo = (uint32_t)hostFenceHandle; in createFence()767 exportSync.fenceHandleHi = (uint32_t)(hostFenceHandle >> 32); in createFence()769 exec.command = static_cast<void*>(&exportSync); in createFence()770 exec.command_size = sizeof(exportSync); in createFence()