Searched refs:aSlot (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/Main/include/
H A DParallelPortImpl.h40 HRESULT init (Machine *aParent, ULONG aSlot);
59 HRESULT getSlot(ULONG *aSlot);
H A DSerialPortImpl.h43 HRESULT init (Machine *aParent, ULONG aSlot);
71 HRESULT getSlot(ULONG *aSlot);
H A DDHCPServerImpl.h116 LONG aSlot,
123 LONG aSlot,
127 LONG aSlot);
H A DNetworkAdapterImpl.h46 HRESULT init(Machine *aParent, ULONG aSlot);
68 HRESULT getSlot(ULONG *aSlot);
H A DMachineImpl.h1061 HRESULT getNetworkAdapter(ULONG aSlot,
1081 HRESULT getSerialPort(ULONG aSlot,
1083 HRESULT getParallelPort(ULONG aSlot,
/vbox/src/VBox/Main/src-server/
H A DParallelPortImpl.cpp75 HRESULT ParallelPort::init(Machine *aParent, ULONG aSlot) argument
77 LogFlowThisFunc(("aParent=%p, aSlot=%d\n", aParent, aSlot));
93 m->bd->ulSlot = aSlot;
240 HRESULT ParallelPort::getSlot(ULONG *aSlot) argument
244 *aSlot = m->bd->ulSlot;
H A DDHCPServerImpl.cpp443 LONG aSlot,
449 DhcpOptionMap &map = m->VmSlot2Options[VmNameSlotKey(aVmName, aSlot)];
461 HRESULT DHCPServer::removeVmSlotOptions(const com::Utf8Str &aVmName, LONG aSlot) argument
464 DhcpOptionMap& map = i_findOptMapByVmNameSlot(aVmName, aSlot);
477 LONG aSlot,
482 DhcpOptionMap& map = i_findOptMapByVmNameSlot(aVmName, aSlot);
588 LONG aSlot)
590 return m->VmSlot2Options[settings::VmNameSlotKey(aVmName, aSlot)];
442 addVmSlotOption(const com::Utf8Str &aVmName, LONG aSlot, DhcpOpt_T aOption, const com::Utf8Str &aValue) argument
476 getVmSlotOptions(const com::Utf8Str &aVmName, LONG aSlot, std::vector<com::Utf8Str> &aValues) argument
587 i_findOptMapByVmNameSlot(const com::Utf8Str& aVmName, LONG aSlot) argument
H A DSerialPortImpl.cpp56 HRESULT SerialPort::init(Machine *aParent, ULONG aSlot) argument
58 LogFlowThisFunc(("aParent=%p, aSlot=%d\n", aParent, aSlot));
74 m->bd->ulSlot = aSlot;
288 HRESULT SerialPort::getSlot(ULONG *aSlot) argument
292 *aSlot = m->bd->ulSlot;
H A DNetworkAdapterImpl.cpp67 HRESULT NetworkAdapter::init(Machine *aParent, ULONG aSlot) argument
69 LogFlowThisFunc(("aParent=%p, aSlot=%d\n", aParent, aSlot));
73 ComAssertRet(aSlot < maxNetworkAdapters, E_INVALIDARG);
89 mData->mSlot = aSlot;
275 HRESULT NetworkAdapter::getSlot(ULONG *aSlot) argument
279 *aSlot = mData->mSlot;
H A DMachineImpl.cpp4838 HRESULT Machine::getSerialPort(ULONG aSlot, ComPtr<ISerialPort> &aPort) argument
4843 mSerialPorts[aSlot].queryInterfaceTo(aPort.asOutParam());
4848 HRESULT Machine::getParallelPort(ULONG aSlot, ComPtr<IParallelPort> &aPort) argument
4852 mParallelPorts[aSlot].queryInterfaceTo(aPort.asOutParam());
4857 HRESULT Machine::getNetworkAdapter(ULONG aSlot, ComPtr<INetworkAdapter> &aAdapter) argument
4861 if (aSlot >= mNetworkAdapters.size())
4864 aSlot, mNetworkAdapters.size());
4868 mNetworkAdapters[aSlot].queryInterfaceTo(aAdapter.asOutParam());
/vbox/src/VBox/Devices/Bus/
H A DDevPciIch9.cpp2238 PCIDevice** aSlot = &pBus->apDevices[iSlot << 3];
2240 return (aSlot[0] && pciDevIsRequestedDevfunc(aSlot[0]))
2241 || (aSlot[1] && pciDevIsRequestedDevfunc(aSlot[1]))
2242 || (aSlot[2] && pciDevIsRequestedDevfunc(aSlot[2]))
2243 || (aSlot[3] && pciDevIsRequestedDevfunc(aSlot[3]))
2244 || (aSlot[
[all...]
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageDHCPServer.cpp65 VmNameSlotKey(const std::string &aVmName, uint8_t aSlot) : argument
67 u8Slot(aSlot) {}
/vbox/include/VBox/
H A Dsettings.h352 VmNameSlotKey(const com::Utf8Str& aVmName, LONG aSlot): VmName(aVmName), argument
353 Slot(aSlot){}
/vbox/src/VBox/Main/cbinding/
H A DVBoxCAPI_v4_3.h3761 #define IDHCPServer_AddVmSlotOption(p, aVmname, aSlot, aOption, aValue) ((p)->lpVtbl->AddVmSlotOption(p, aVmname, aSlot, aOption, aValue))
3762 #define IDHCPServer_RemoveVmSlotOptions(p, aVmname, aSlot) ((p)->lpVtbl->RemoveVmSlotOptions(p, aVmname, aSlot))
3763 #define IDHCPServer_GetVmSlotOptions(p, aVmname, aSlot, aOption) ((p)->lpVtbl->GetVmSlotOptions(p, aVmname, aSlot, aOption))
6772 #define IMachine_GetNetworkAdapter(p, aSlot, aAdapter) ((p)->lpVtbl->GetNetworkAdapter(p, aSlot, aAdapter))
6782 #define IMachine_GetSerialPort(p, aSlot, aPort) ((p)->lpVtbl->GetSerialPort(p, aSlot, aPor
[all...]

Completed in 164 milliseconds