Home
last modified time | relevance | path

Searched refs:pImportSemaphoreFdInfo (Results 1 – 20 of 20) sorted by relevance

/external/mesa3d/src/intel/vulkan/
Danv_queue.c1004 const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) in anv_ImportSemaphoreFdKHR() argument
1007 ANV_FROM_HANDLE(anv_semaphore, semaphore, pImportSemaphoreFdInfo->semaphore); in anv_ImportSemaphoreFdKHR()
1008 int fd = pImportSemaphoreFdInfo->fd; in anv_ImportSemaphoreFdKHR()
1014 switch (pImportSemaphoreFdInfo->handleType) { in anv_ImportSemaphoreFdKHR()
1064 if (pImportSemaphoreFdInfo->flags & VK_SEMAPHORE_IMPORT_TEMPORARY_BIT_KHR) { in anv_ImportSemaphoreFdKHR()
/external/mesa3d/src/amd/vulkan/
Dradv_device.c3828 const VkImportSemaphoreFdInfoKHR *pImportSemaphoreFdInfo) in radv_ImportSemaphoreFdKHR() argument
3831 RADV_FROM_HANDLE(radv_semaphore, sem, pImportSemaphoreFdInfo->semaphore); in radv_ImportSemaphoreFdKHR()
3834 if (pImportSemaphoreFdInfo->flags & VK_SEMAPHORE_IMPORT_TEMPORARY_BIT_KHR) { in radv_ImportSemaphoreFdKHR()
3840 switch(pImportSemaphoreFdInfo->handleType) { in radv_ImportSemaphoreFdKHR()
3842 return radv_import_opaque_fd(device, pImportSemaphoreFdInfo->fd, syncobj_dst); in radv_ImportSemaphoreFdKHR()
3844 return radv_import_sync_fd(device, pImportSemaphoreFdInfo->fd, syncobj_dst); in radv_ImportSemaphoreFdKHR()
/external/mesa3d/prebuilt-intermediates/vulkan/
Danv_entrypoints.h1278 …nv_ImportSemaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
1279 …n7_ImportSemaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
1280 …75_ImportSemaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
1281 …n8_ImportSemaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
1282 …n9_ImportSemaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
1283 …10_ImportSemaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
Danv_entrypoints.c613 …emaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) __attribu…
1034 …emaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) __attribu…
1455 …emaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) __attribu…
1876 …emaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) __attribu…
2297 …emaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) __attribu…
2718 …emaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) __attribu…
3724 …amp_ImportSemaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) in anv_tramp_ImportSemaphoreFdKHR() argument
3727 return anv_device->dispatch.vkImportSemaphoreFdKHR(device, pImportSemaphoreFdInfo); in anv_tramp_ImportSemaphoreFdKHR()
/external/deqp/external/vulkancts/framework/vulkan/
DvkDeviceDriverImpl.inl765 …ortSemaphoreFdKHR (VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) const
767 return m_vk.importSemaphoreFdKHR(device, pImportSemaphoreFdInfo);
DvkConcreteDeviceInterface.inl156 …aphoreFdKHR (VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) const;
DvkVirtualDeviceInterface.inl156 …reFdKHR (VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) const = 0;
DvkNullDriverImpl.inl1419 …LL importSemaphoreFdKHR (VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) argument
1422 DE_UNREF(pImportSemaphoreFdInfo);
DvkFunctionPointerTypes.inl222 …phoreFdKHRFunc) (VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
DvkVulkan_c.inl5523 …vkImportSemaphoreFdKHR)(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
5529 const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
/external/vulkan-validation-layers/layers/
Dcore_validation.h1382 …ateImportSemaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
1383 …cordImportSemaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo,
Dcore_validation.cpp11397 …teImportSemaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR *pImportSemaphoreFdInfo) { in PreCallValidateImportSemaphoreFdKHR() argument
11399 …return ValidateImportSemaphore(device_data, pImportSemaphoreFdInfo->semaphore, "vkImportSemaphoreF… in PreCallValidateImportSemaphoreFdKHR()
11402 …cordImportSemaphoreFdKHR(VkDevice device, const VkImportSemaphoreFdInfoKHR *pImportSemaphoreFdInfo, in PostCallRecordImportSemaphoreFdKHR() argument
11406 …RecordImportSemaphoreState(device_data, pImportSemaphoreFdInfo->semaphore, pImportSemaphoreFdInfo-… in PostCallRecordImportSemaphoreFdKHR()
11407 pImportSemaphoreFdInfo->flags); in PostCallRecordImportSemaphoreFdKHR()
/external/mesa3d/include/vulkan/
Dvulkan.h4547 …vkImportSemaphoreFdKHR)(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
4553 const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
/external/skia/include/third_party/vulkan/vulkan/
Dvulkan_core.h5310 …vkImportSemaphoreFdKHR)(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
5316 const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
/external/skqp/include/third_party/vulkan/vulkan/
Dvulkan_core.h5310 …vkImportSemaphoreFdKHR)(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
5316 const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
/external/vulkan-headers/include/vulkan/
Dvulkan_core.h5478 …vkImportSemaphoreFdKHR)(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
5484 const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
Dvulkan.hpp1761 …rtSemaphoreFdKHR( VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo ) const in vkImportSemaphoreFdKHR()
1763 return ::vkImportSemaphoreFdKHR( device, pImportSemaphoreFdInfo ); in vkImportSemaphoreFdKHR()
14819 …Result importSemaphoreFdKHR( const ImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo, Dispatch cons…
51525 …lt Device::importSemaphoreFdKHR( const ImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo, Dispatch … in importSemaphoreFdKHR() argument
51527 …FdKHR( m_device, reinterpret_cast<const VkImportSemaphoreFdInfoKHR*>( pImportSemaphoreFdInfo ) ) ); in importSemaphoreFdKHR()
/external/swiftshader/include/vulkan/
Dvulkan_core.h5430 …vkImportSemaphoreFdKHR)(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
5436 const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
Dvulkan.hpp2367 …tSemaphoreFdKHR( VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo ) const in vkImportSemaphoreFdKHR()
2369 return ::vkImportSemaphoreFdKHR( device, pImportSemaphoreFdInfo); in vkImportSemaphoreFdKHR()
40979 …Result importSemaphoreFdKHR( const ImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo, Dispatch cons…
43788 …lt Device::importSemaphoreFdKHR( const ImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo, Dispatch … in importSemaphoreFdKHR() argument
43790 …FdKHR( m_device, reinterpret_cast<const VkImportSemaphoreFdInfoKHR*>( pImportSemaphoreFdInfo ) ) ); in importSemaphoreFdKHR()
/external/deqp/external/vulkancts/scripts/src/
Dvulkan.h.in5520 …vkImportSemaphoreFdKHR)(VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);
5526 const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo);