Lines Matching defs:device
45 #include "dev/pci/device.hh"
60 PciHost::registerDevice(PciDevice *device, PciBusAddr bus_addr, PciIntPin pin)
62 auto map_entry = devices.emplace(bus_addr, device);
64 DPRINTF(PciHost, "%02x:%02x.%i: Registering device\n",
77 auto device = devices.find(addr);
78 return device != devices.end() ? device->second : nullptr;
84 auto device = devices.find(addr);
85 return device != devices.end() ? device->second : nullptr;
171 "%02x:%02x.%i: Write to config space on non-existent PCI device\n",