Home
last modified time | relevance | path

Searched refs:AddressSpaceDeviceType (Results 1 – 12 of 12) sorted by relevance

/device/generic/vulkan-cereal/host-common/
Daddress_space_device.cpp105 const AddressSpaceDeviceType device_type = in ping()
106 static_cast<AddressSpaceDeviceType>(pingInfo->metadata); in ping()
130 const AddressSpaceDeviceType device_type = in pingAtHva()
131 static_cast<AddressSpaceDeviceType>(pingInfo->metadata); in pingAtHva()
264 static_cast<AddressSpaceDeviceType>(stream->getBe32()); in load()
335 buildAddressSpaceDeviceContext(const AddressSpaceDeviceType device_type, in buildAddressSpaceDeviceContext()
341 case AddressSpaceDeviceType::Graphics: in buildAddressSpaceDeviceContext()
345 case AddressSpaceDeviceType::Media: in buildAddressSpaceDeviceContext()
349 case AddressSpaceDeviceType::Sensors: in buildAddressSpaceDeviceContext()
351 case AddressSpaceDeviceType::Power: in buildAddressSpaceDeviceContext()
[all …]
DAddressSpaceService.h30 enum AddressSpaceDeviceType { enum
57 virtual AddressSpaceDeviceType getDeviceType() const = 0;
Daddress_space_host_memory_allocator.cpp112 AddressSpaceDeviceType AddressSpaceHostMemoryAllocatorContext::getDeviceType() const { in getDeviceType()
113 return AddressSpaceDeviceType::HostMemoryAllocator; in getDeviceType()
Daddress_space_host_media.cpp52 AddressSpaceDeviceType AddressSpaceHostMediaContext::getDeviceType() const { in getDeviceType()
53 return AddressSpaceDeviceType::Media; in getDeviceType()
Daddress_space_host_media.h33 AddressSpaceDeviceType getDeviceType() const override;
Daddress_space_host_memory_allocator.h36 AddressSpaceDeviceType getDeviceType() const override;
Daddress_space_graphics.h51 AddressSpaceDeviceType getDeviceType() const override;
Daddress_space_shared_slots_host_memory_allocator.h82 AddressSpaceDeviceType getDeviceType() const override;
Daddress_space_shared_slots_host_memory_allocator.cpp386 AddressSpaceDeviceType AddressSpaceSharedSlotsHostMemoryAllocatorContext::getDeviceType() const { in getDeviceType()
387 return AddressSpaceDeviceType::SharedSlotsHostMemoryAllocator; in getDeviceType()
Daddress_space_host_memory_allocator_unittests.cpp69 EXPECT_EQ(ctx.getDeviceType(), AddressSpaceDeviceType::HostMemoryAllocator); in TEST()
Daddress_space_graphics.cpp716 AddressSpaceDeviceType AddressSpaceGraphicsContext::getDeviceType() const { in getDeviceType()
717 return AddressSpaceDeviceType::Graphics; in getDeviceType()
Daddress_space_graphics_unittests.cpp61 ping((uint64_t)AddressSpaceDeviceType::Graphics); in Client()