Searched defs:aHostAddress (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Main/src-all/
H A DPCIDeviceAttachmentImpl.cpp28 LONG aHostAddress,
31 : HostAddress(aHostAddress), GuestAddress(aGuestAddress),
64 LONG aHostAddress,
69 m = new Data(aDevName, aHostAddress, aGuestAddress, fPhysical);
119 HRESULT PCIDeviceAttachment::getHostAddress(LONG *aHostAddress) argument
121 *aHostAddress = m->HostAddress;
27 Data(const Bstr &aDevName, LONG aHostAddress, LONG aGuestAddress, BOOL afPhysical) argument
62 init(IMachine *aParent, const Bstr &aDevName, LONG aHostAddress, LONG aGuestAddress, BOOL fPhysical) argument
/vbox/src/VBox/Main/src-client/
H A DBusAssignmentManager.cpp224 PCIDeviceRecord(const char* pszName, PCIBusAddress aHostAddress) argument
227 this->HostAddress = aHostAddress;
/vbox/src/VBox/Main/src-server/
H A DMachineImpl.cpp6684 HRESULT Machine::attachHostPCIDevice(LONG aHostAddress, LONG aDesiredGuestAddress, BOOL /* aTryToUnbind */) argument
6711 if (iHostAddress == aHostAddress)
6719 RTStrPrintf(name, sizeof(name), "host%02x:%02x.%x", (aHostAddress>>8) & 0xff,
6720 (aHostAddress & 0xf8) >> 3, aHostAddress & 7);
6723 pda->init(this, bname, aHostAddress, aDesiredGuestAddress, TRUE);
6736 HRESULT Machine::detachHostPCIDevice(LONG aHostAddress) argument
6756 if (iHostAddress != -1 && iHostAddress == aHostAddress)
6783 aHostAddress

Completed in 90 milliseconds