/hardware/google/aemu/host-common/testing/ |
D | HostAddressSpace.cpp | 83 uint64_t allocBlock(uint32_t handle, size_t size, uint64_t* physAddr) { in allocBlock() argument 85 return allocBlockLocked(handle, size, physAddr); in allocBlock() 104 void setHostAddrByPhysAddr(uint64_t physAddr, void* hva) { in setHostAddrByPhysAddr() argument 105 if (!physAddr) return; in setHostAddrByPhysAddr() 106 const uint64_t off = physAddr - kPciStart; in setHostAddrByPhysAddr() 124 void unsetHostAddrByPhysAddr(uint64_t physAddr) { in unsetHostAddrByPhysAddr() argument 125 if (!physAddr) return; in unsetHostAddrByPhysAddr() 126 const uint64_t off = physAddr - kPciStart; in unsetHostAddrByPhysAddr() 144 void* getHostAddr(uint64_t physAddr) { in getHostAddr() argument 145 HASD_LOG("get hva of 0x%llx", (unsigned long long)physAddr); in getHostAddr() [all …]
|
D | HostAddressSpace.h | 42 uint64_t allocBlock(uint32_t handle, size_t size, uint64_t* physAddr); 46 void setHostAddrByPhysAddr(uint64_t physAddr, void* hva); 47 void unsetHostAddrByPhysAddr(uint64_t physAddr); 48 void* getHostAddr(uint64_t physAddr);
|
/hardware/google/aemu/host-common/ |
D | address_space_shared_slots_host_memory_allocator.cpp | 335 uint64_t physAddr = kv.second.allocate(alignedSize); in allocate() local 336 if (physAddr) { in allocate() 337 return populatePhysAddr(info, physAddr, alignedSize, &kv.second); in allocate() 343 const uint64_t physAddr = newBlock.allocate(alignedSize); in allocate() local 344 if (!physAddr) { in allocate() 354 return populatePhysAddr(info, physAddr, alignedSize, &r.first->second); in allocate() 359 const uint64_t physAddr) { in unallocate() argument 362 auto i = m_allocations.find(physAddr); in unallocate() 368 block->unallocate(physAddr, i->second.first); in unallocate() 369 m_allocations.erase(physAddr); in unallocate() [all …]
|
D | HostAddressSpace_unittest.cpp | 210 uint64_t physAddr = hwFuncs->getPhysAddrStart() + offset; in TEST_F() local 211 mDevice->setHostAddrByPhysAddr(physAddr, buf); in TEST_F() 213 EXPECT_EQ(buf, mDevice->getHostAddr(physAddr)); in TEST_F()
|
D | address_space_host_media.cpp | 40 mGuestAddr = create.physAddr; in AddressSpaceHostMediaContext() 41 allocatePages(create.physAddr, kNumPages); in AddressSpaceHostMediaContext()
|
D | address_space_device.cpp | 127 create.physAddr = phys_addr; in ping() 152 create.physAddr = phys_addr; in pingAtHva() 286 create.physAddr = pingInfoGpa; in load()
|
D | address_space_graphics.cpp | 575 [](uint64_t physAddr) { return (char*)sGlobals()->controlOps()->get_host_ptr(physAddr); }, in AddressSpaceGraphicsContext() argument
|
D | address_space_graphics_unittests.cpp | 511 char* ptr = mCallbacks.getPtr(currentXfer.physAddr); in type2Read()
|
/hardware/google/aemu/host-common/include/host-common/ |
D | address_space_device.h | 25 uint64_t physAddr; member
|
D | address_space_graphics_types.h | 218 uint64_t physAddr; member
|
/hardware/google/gfxstream/guest/GoldfishAddressSpace/include/ |
D | goldfish_address_space.h | 66 uint64_t physAddr() const;
|
D | address_space_graphics_types.h | 218 uint64_t physAddr; member
|
D | goldfish_address_space_fuchsia.impl | 154 uint64_t GoldfishAddressSpaceBlock::physAddr() const
|
D | goldfish_address_space_android.impl | 238 uint64_t GoldfishAddressSpaceBlock::physAddr() const
|
/hardware/google/gfxstream/host/ |
D | RingStream.cpp | 301 mCallbacks.getPtr(xfersPtr[i].physAddr); in type2Read()
|
/hardware/google/gfxstream/host/vulkan/ |
D | VkDecoderGlobalState.cpp | 4090 uint64_t physAddr) { in mapHostVisibleMemoryToGuestPhysicalAddressLocked() argument 4100 info->guestPhysAddr = physAddr; in mapHostVisibleMemoryToGuestPhysicalAddressLocked()
|
/hardware/google/gfxstream/guest/vulkan_enc/ |
D | ResourceTracker.cpp | 6189 *pAddress = block->physAddr(); in on_vkMapMemoryIntoAddressSpaceGOOGLE_pre()
|