/hardware/google/gfxstream/host/vulkan/cereal/common/ |
D | goldfish_vk_dispatch.h | 117 PFN_vkResetEvent vkResetEvent; member
|
D | goldfish_vk_dispatch.cpp | 377 out->vkResetEvent = (PFN_vkResetEvent)dlSymFunc(lib, "vkResetEvent"); in init_vulkan_dispatch_from_system_loader() 1161 out->vkResetEvent = (PFN_vkResetEvent)vk->vkGetInstanceProcAddr(instance, "vkResetEvent"); in init_vulkan_dispatch_from_instance() 2104 out->vkResetEvent = (PFN_vkResetEvent)vk->vkGetDeviceProcAddr(device, "vkResetEvent"); in init_vulkan_dispatch_from_device() 3069 if (!vk->vkResetEvent) { in vulkan_dispatch_check_device_VK_VERSION_1_0()
|
/hardware/google/gfxstream/common/vulkan/include/vulkan/ |
D | vulkansc.hpp | 1264 VkResult vkResetEvent( VkDevice device, VkEvent event ) const VULKAN_HPP_NOEXCEPT in vkResetEvent() function in VULKAN_HPP_NAMESPACE::DispatchLoaderStatic 1266 return ::vkResetEvent( device, event ); in vkResetEvent() 4660 PFN_vkResetEvent vkResetEvent = 0; member in VULKAN_HPP_NAMESPACE::DispatchLoaderDynamic 5150 vkResetEvent = PFN_vkResetEvent( vkGetInstanceProcAddr( instance, "vkResetEvent" ) ); in init() 5572 vkResetEvent = PFN_vkResetEvent( vkGetDeviceProcAddr( device, "vkResetEvent" ) ); in init()
|
D | vulkan.hpp | 1289 VkResult vkResetEvent( VkDevice device, VkEvent event ) const VULKAN_HPP_NOEXCEPT in vkResetEvent() function in VULKAN_HPP_NAMESPACE::DispatchLoaderStatic 1291 return ::vkResetEvent( device, event ); in vkResetEvent() 9183 PFN_vkResetEvent vkResetEvent = 0; member in VULKAN_HPP_NAMESPACE::DispatchLoaderDynamic 10349 vkResetEvent = PFN_vkResetEvent( vkGetInstanceProcAddr( instance, "vkResetEvent" ) ); in init() 11431 vkResetEvent = PFN_vkResetEvent( vkGetDeviceProcAddr( device, "vkResetEvent" ) ); in init()
|
D | vulkansc_raii.hpp | 313 vkResetEvent = PFN_vkResetEvent( vkGetDeviceProcAddr( device, "vkResetEvent" ) ); in DeviceDispatcher() 673 PFN_vkResetEvent vkResetEvent = 0; member in VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher 6450 VULKAN_HPP_ASSERT( getDispatcher()->vkResetEvent && "Function <vkResetEvent> requires <VK_VERSION_1… in reset() 6454 …VkResult result = getDispatcher()->vkResetEvent( static_cast<VkDevice>( m_device ), static_cast<Vk… in reset()
|
D | vulkan_raii.hpp | 631 vkResetEvent = PFN_vkResetEvent( vkGetDeviceProcAddr( device, "vkResetEvent" ) ); in DeviceDispatcher() 1509 PFN_vkResetEvent vkResetEvent = 0; member in VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher 11235 VULKAN_HPP_ASSERT( getDispatcher()->vkResetEvent && "Function <vkResetEvent> requires <VK_VERSION_1… in reset() 11239 …VkResult result = getDispatcher()->vkResetEvent( static_cast<VkDevice>( m_device ), static_cast<Vk… in reset()
|
D | vulkansc_funcs.hpp | 1357 return static_cast<Result>( d.vkResetEvent( m_device, static_cast<VkEvent>( event ) ) ); in resetEvent() 1367 VkResult result = d.vkResetEvent( m_device, static_cast<VkEvent>( event ) ); in resetEvent()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/ |
D | synchronization.adoc | 5522 [open,refpage='vkResetEvent',desc='Reset an event to non-signaled state',type='protos'] 5526 include::{generated}/api/protos/vkResetEvent.adoc[] 5531 When flink:vkResetEvent is executed on the host, it defines an _event 5534 If pname:event is already in the unsignaled state when flink:vkResetEvent is 5535 executed, then flink:vkResetEvent has no effect, and no event unsignal 5540 * [[VUID-vkResetEvent-event-03821]] 5541 There must: be an execution dependency between fname:vkResetEvent and 5545 * [[VUID-vkResetEvent-event-03822]] 5546 There must: be an execution dependency between fname:vkResetEvent and 5551 * [[VUID-vkResetEvent-event-03823]] [all …]
|
/hardware/google/gfxstream/guest/vulkan_enc/ |
D | VkEncoder.h | 164 VkResult vkResetEvent(VkDevice device, VkEvent event, uint32_t doLock);
|
D | func_table.cpp | 590 vkEnc->vkResetEvent(gfxstream_device->internal_object, event, true /* do lock */); in gfxstream_vk_ResetEvent()
|
D | VkEncoder.cpp | 5514 VkResult VkEncoder::vkResetEvent(VkDevice device, VkEvent event, uint32_t doLock) { in vkResetEvent() function in gfxstream::vk::VkEncoder
|
/hardware/google/gfxstream/host/vulkan/ |
D | VkDecoderSnapshot.h | 230 void vkResetEvent(const uint8_t* snapshotTraceBegin, size_t snapshotTraceBytes,
|
D | VkDecoderSnapshot.cpp | 408 void vkResetEvent(const uint8_t* snapshotTraceBegin, size_t snapshotTraceBytes, in vkResetEvent() function in VkDecoderSnapshot::Impl 4205 void VkDecoderSnapshot::vkResetEvent(const uint8_t* snapshotTraceBegin, size_t snapshotTraceBytes, in vkResetEvent() function in VkDecoderSnapshot 4208 mImpl->vkResetEvent(snapshotTraceBegin, snapshotTraceBytes, pool, input_result, device, event); in vkResetEvent()
|
D | VkDecoder.cpp | 3254 vkResetEvent_VkResult_return = vk->vkResetEvent(unboxed_device, event); in decode() 3265 m_state->snapshot()->vkResetEvent(snapshotTraceBegin, snapshotTraceBytes, in decode()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/ |
D | ChangeLog.adoc | 4138 * Fix typo `vkCmdResetEvent` -> `vkResetEvent` in flink:vkResetEvent valid 12557 * Add missing validity statements to flink:vkResetEvent and
|
/hardware/google/gfxstream/guest/mesa/include/vulkan/ |
D | vulkan_core.h | 4327 VKAPI_ATTR VkResult VKAPI_CALL vkResetEvent(
|