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

/vbox/src/VBox/Main/src-server/
H A DParallelPortImpl.cpp249 HRESULT ParallelPort::getIRQ(ULONG *aIRQ) argument
253 *aIRQ = m->bd->ulIRQ;
258 HRESULT ParallelPort::setIRQ(ULONG aIRQ) argument
262 if (aIRQ > 255)
265 m->bd->ulSlot, aIRQ, 255);
273 if (m->bd->ulIRQ != aIRQ)
276 m->bd->ulIRQ = aIRQ;
H A DSerialPortImpl.cpp298 HRESULT SerialPort::getIRQ(ULONG *aIRQ) argument
302 *aIRQ = m->bd->ulIRQ;
308 HRESULT SerialPort::setIRQ(ULONG aIRQ) argument
312 if (aIRQ > 255)
315 m->bd->ulSlot, aIRQ, 255);
323 if (m->bd->ulIRQ != aIRQ)
326 m->bd->ulIRQ = aIRQ;
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DVBoxGlobal.cpp725 * @a aIRQ and @a aIOBase are 0).
727 QString VBoxGlobal::toCOMPortName (ulong aIRQ, ulong aIOBase) const argument
730 if (kComKnownPorts [i].IRQ == aIRQ &&
740 * @a aIRQ and @a aIOBase are 0).
742 QString VBoxGlobal::toLPTPortName (ulong aIRQ, ulong aIOBase) const argument
745 if (kLptKnownPorts [i].IRQ == aIRQ &&
757 bool VBoxGlobal::toCOMPortNumbers (const QString &aName, ulong &aIRQ, argument
763 aIRQ = kComKnownPorts [i].IRQ;
776 bool VBoxGlobal::toLPTPortNumbers (const QString &aName, ulong &aIRQ, argument
782 aIRQ
[all...]

Completed in 82 milliseconds