/aosp_15_r20/external/vulkan-validation-layers/tests/ |
H A D | vkpositivelayertests.cpp | 2746 VkCommandPool command_pool; in TEST_F() local 2751 vkCreateCommandPool(m_device->device(), &pool_create_info, nullptr, &command_pool); in TEST_F() 2755 command_buffer_allocate_info.commandPool = command_pool; in TEST_F() 2759 vkFreeCommandBuffers(m_device->device(), command_pool, 3, command_buffers); in TEST_F() 2760 vkDestroyCommandPool(m_device->device(), command_pool, NULL); in TEST_F() 3501 VkCommandPool command_pool; in TEST_F() local 3506 vkCreateCommandPool(m_device->device(), &pool_create_info, nullptr, &command_pool); in TEST_F() 3511 command_buffer_allocate_info.commandPool = command_pool; in TEST_F() 3526 vkDestroyCommandPool(m_device->device(), command_pool, NULL); in TEST_F() 3732 VkCommandPool command_pool; in TEST_F() local [all …]
|
H A D | vklayertests_others.cpp | 1561 VkCommandPool command_pool; in TEST_F() local 1562 vkCreateCommandPool(test_device.handle(), &pool_create_info, nullptr, &command_pool); in TEST_F() 1567 cmd.commandPool = command_pool; in TEST_F() 1600 vkDestroyCommandPool(test_device.handle(), command_pool, nullptr); in TEST_F() 1623 VkCommandPool command_pool; in TEST_F() local 1624 vkCreateCommandPool(test_device.handle(), &pool_create_info, nullptr, &command_pool); in TEST_F() 1629 cmd.commandPool = command_pool; in TEST_F() 1655 vkDestroyCommandPool(test_device.handle(), command_pool, NULL); in TEST_F() 2675 VkCommandPool command_pool; in TEST_F() local 2680 vkCreateCommandPool(m_device->device(), &pool_create_info, nullptr, &command_pool); in TEST_F() [all …]
|
H A D | layer_validation_tests.cpp | 1880 delete command_pool; in ~QueueFamilyObjs() 1888 command_pool = new VkCommandPoolObj(device, qf_index, cp_flags); in Init() 1889 …command_buffer = new VkCommandBufferObj(device, command_pool, VK_COMMAND_BUFFER_LEVEL_PRIMARY, que… in Init() 1890 …command_buffer2 = new VkCommandBufferObj(device, command_pool, VK_COMMAND_BUFFER_LEVEL_PRIMARY, qu… in Init() 1912 vkResetCommandPool(layer_test->device(), qf.second.command_pool->handle(), 0); in Reset()
|
H A D | layer_validation_tests.h | 681 VkCommandPoolObj *command_pool = nullptr; member
|
H A D | vklayertests_command.cpp | 3768 VkCommandPoolObj command_pool(m_device, queueFamilyIndex); in TEST_F() local 3771 VkCommandBufferObj command_buffer(m_device, &command_pool); in TEST_F() 4183 VkCommandPoolObj command_pool(m_device, err_qfi); in TEST_F() local 4184 ASSERT_TRUE(command_pool.initialized()); in TEST_F() 4185 VkCommandBufferObj command_buffer(m_device, &command_pool); in TEST_F()
|
H A D | vklayertests_buffer_image_memory_sampler.cpp | 2301 VkCommandPoolObj command_pool(m_device, queue_family_index, 0); in TEST_F() local 2334 VkCommandBufferObj command_buffer(m_device, &command_pool); in TEST_F() 4034 …VkCommandPoolObj command_pool(m_device, queue_family_index, VK_COMMAND_POOL_CREATE_RESET_COMMAND_B… in TEST_F() local 4035 VkCommandBufferObj bad_command_buffer(m_device, &command_pool); in TEST_F()
|
/aosp_15_r20/external/openthread/tools/tcat_ble_client/cli/ |
H A D | cli.py | 70 command_pool = self._commands.keys() 93 command_pool = current_command._subcommands.keys() 95 options = [c for c in command_pool if c.startswith(text)]
|
/aosp_15_r20/external/rust/android-crates-io/crates/ash/src/extensions/khr/ |
D | maintenance1.rs | 25 command_pool: vk::CommandPool, in trim_command_pool() 28 (self.fp.trim_command_pool_khr)(self.handle, command_pool, flags); in trim_command_pool()
|
/aosp_15_r20/external/vulkan-validation-layers/layers/ |
H A D | object_tracker_utils.cpp | 65 void ObjectLifetimes::AllocateCommandBuffer(VkDevice device, const VkCommandPool command_pool, cons… in AllocateCommandBuffer() argument 70 pNewObjNode->parent_object = HandleToUint64(command_pool); in AllocateCommandBuffer() 82 bool ObjectLifetimes::ValidateCommandBuffer(VkDevice device, VkCommandPool command_pool, VkCommandB… in ValidateCommandBuffer() argument 89 if (pNode->parent_object != HandleToUint64(command_pool)) { in ValidateCommandBuffer() 96 report_data->FormatHandle(command_pool).c_str()); in ValidateCommandBuffer()
|
H A D | object_lifetime_validation.h | 113 …void AllocateCommandBuffer(VkDevice device, const VkCommandPool command_pool, const VkCommandBuffe… 122 …bool ValidateCommandBuffer(VkDevice device, VkCommandPool command_pool, VkCommandBuffer command_bu…
|
/aosp_15_r20/hardware/google/gfxstream/common/detector/ |
D | Vulkan.h | 190 vkhpp::UniqueCommandPool command_pool, in Vk() argument 200 mCommandPool(std::move(command_pool)), in Vk()
|
/aosp_15_r20/external/crosvm/gpu_display/src/vulkan/ |
H A D | post_worker.rs | 742 let command_pool = Arc::new( localVariable 746 let command_buffer_allocs = command_pool 772 _command_pool: command_pool,
|
/aosp_15_r20/external/rust/android-crates-io/crates/ash/src/ |
D | device.rs | 851 command_pool: vk::CommandPool, in trim_command_pool() 854 (self.device_fn_1_1.trim_command_pool)(self.handle(), command_pool, flags); in trim_command_pool() 996 command_pool: vk::CommandPool, in free_command_buffers() 1001 command_pool, in free_command_buffers() 1586 command_pool: vk::CommandPool, in reset_command_pool() 1589 (self.device_fn_1_0.reset_command_pool)(self.handle(), command_pool, flags).result() in reset_command_pool()
|
/aosp_15_r20/external/virglrenderer/src/venus/ |
H A D | vkr_command_buffer.h | 18 VKR_DEFINE_OBJECT_CAST(command_pool, VK_OBJECT_TYPE_COMMAND_POOL, VkCommandPool)
|
H A D | vkr_common.h | 131 VkCommandPool command_pool; member
|
H A D | vkr_device.c | 228 vk->DestroyCommandPool(device, obj->handle.command_pool, NULL); in vkr_device_object_destroy()
|
/aosp_15_r20/external/deqp/android/cts/main/vk-main-2023-03-01/ |
H A D | memory.txt | 9 dEQP-VK.memory.address_binding_report.create_and_destroy_object.command_pool
|
/aosp_15_r20/external/deqp/android/cts/main/vk-main-2021-03-01/ |
H A D | memory.txt | 9 dEQP-VK.memory.device_memory_report.create_and_destroy_object.command_pool
|
/aosp_15_r20/external/deqp-deps/amber/ |
D | Android.bp | 79 "src/vulkan/command_pool.cc",
|
/aosp_15_r20/external/deqp-deps/amber/src/vulkan/ |
D | CMakeLists.txt | 19 command_pool.cc
|
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/command_buffer/ |
D | pool.rs | 220 command_pool: self.handle, in allocate_command_buffers()
|
/aosp_15_r20/external/mesa3d/src/vulkan/overlay-layer/ |
H A D | overlay.cpp | 173 VkCommandPool command_pool; member 543 cmd_buffer_info.commandPool = data->command_pool; in get_overlay_draw() 1808 NULL, &data->command_pool)); in setup_swapchain_data() 1832 device_data->vtable.DestroyCommandPool(device_data->device, data->command_pool, NULL); in shutdown_swapchain_data()
|
/aosp_15_r20/external/rust/android-crates-io/crates/ash/src/vk/ |
D | features.rs | 935 command_pool: CommandPool, 941 command_pool: CommandPool, 953 command_pool: CommandPool,
|
D | definitions.rs | 7545 pub command_pool: CommandPool, field 7555 command_pool: CommandPool::default(), in default() 7590 pub fn command_pool(mut self, command_pool: CommandPool) -> Self { in command_pool() method 7591 self.inner.command_pool = command_pool; in command_pool()
|
/aosp_15_r20/external/swiftshader/tests/regres/testlists/vk-default/ |
H A D | memory.txt | 9 dEQP-VK.memory.address_binding_report.create_and_destroy_object.command_pool 760 dEQP-VK.memory.device_memory_report.create_and_destroy_object.command_pool
|