Searched refs:waitAll (Results 1 - 13 of 13) sorted by relevance

/external/deqp/external/vulkancts/framework/vulkan/
H A DvkDeviceDriverImpl.inl115 VkResult DeviceDriver::waitForFences (VkDevice device, deUint32 fenceCount, const VkFence* pFences, VkBool32 waitAll, deUint64 timeout) const
117 return m_vk.waitForFences(device, fenceCount, pFences, waitAll, timeout);
H A DvkConcreteDeviceInterface.inl26 virtual VkResult waitForFences (VkDevice device, deUint32 fenceCount, const VkFence* pFences, VkBool32 waitAll, deUint64 timeout) const;
H A DvkVirtualDeviceInterface.inl26 virtual VkResult waitForFences (VkDevice device, deUint32 fenceCount, const VkFence* pFences, VkBool32 waitAll, deUint64 timeout) const = 0;
H A DvkFunctionPointerTypes.inl43 typedef VKAPI_ATTR VkResult (VKAPI_CALL* WaitForFencesFunc) (VkDevice device, deUint32 fenceCount, const VkFence* pFences, VkBool32 waitAll, deUint64 timeout);
H A DvkNullDriverImpl.inl500 VKAPI_ATTR VkResult VKAPI_CALL waitForFences (VkDevice device, deUint32 fenceCount, const VkFence* pFences, VkBool32 waitAll, deUint64 timeout)
505 DE_UNREF(waitAll);
/external/vulkan-validation-layers/loader/
H A Dtrampoline.c1185 VkBool32 waitAll, uint64_t timeout) {
1190 return disp->WaitForFences(device, fenceCount, pFences, waitAll, timeout);
1184 vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) argument
/external/vulkan-validation-layers/tests/layers/
H A Dwrap_objects.cpp359 VKAPI_ATTR VkResult VKAPI_CALL vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) argument
361 VkResult result = device_dispatch_table(device)->WaitForFences(device, fenceCount, pFences, waitAll, timeout);
/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.h2292 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout);
2599 VkBool32 waitAll,
H A Dvulkan.hpp16292 Result waitForFences( uint32_t fenceCount, const Fence* pFences, Bool32 waitAll, uint64_t timeout ) const argument
16294 return static_cast<Result>( vkWaitForFences( m_device, fenceCount, reinterpret_cast<const VkFence*>( pFences ), waitAll, timeout ) );
16298 Result waitForFences( ArrayProxy<const Fence> fences, Bool32 waitAll, uint64_t timeout ) const argument
16300 Result result = static_cast<Result>( vkWaitForFences( m_device, fences.size() , reinterpret_cast<const VkFence*>( fences.data() ), waitAll, timeout ) );
/external/vulkan-validation-layers/layers/
H A Dparameter_validation.cpp2162 VKAPI_ATTR VkResult VKAPI_CALL WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, argument
2169 skip_call |= parameter_validation_vkWaitForFences(my_data->report_data, fenceCount, pFences, waitAll, timeout);
2172 result = get_dispatch_table(pc_device_table_map, device)->WaitForFences(device, fenceCount, pFences, waitAll, timeout);
H A Dobject_tracker.cpp868 VKAPI_ATTR VkResult VKAPI_CALL WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, argument
884 VkResult result = get_dispatch_table(ot_device_table_map, device)->WaitForFences(device, fenceCount, pFences, waitAll, timeout);
H A Dcore_validation.cpp5302 WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) { argument
5314 VkResult result = dev_data->dispatch_table.WaitForFences(device, fenceCount, pFences, waitAll, timeout);
5319 if (waitAll || fenceCount == 1) {
/external/deqp/external/vulkancts/modules/vulkan/
H A DvktRenderPassTests.cpp392 void waitForFences (const DeviceInterface& vk, VkDevice device, deUint32 fenceCount, const VkFence* pFences, VkBool32 waitAll, deUint64 timeout) argument
394 VK_CHECK(vk.waitForFences(device, fenceCount, pFences, waitAll, timeout));

Completed in 218 milliseconds