Searched defs:aSlot (Results 1 - 7 of 7) sorted by relevance

/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 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 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 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/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){}

Completed in 97 milliseconds