Searched refs:aIRQ (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Main/include/
H A DParallelPortImpl.h60 HRESULT getIRQ(ULONG *aIRQ);
61 HRESULT setIRQ(ULONG aIRQ);
H A DSerialPortImpl.h72 HRESULT getIRQ(ULONG *aIRQ);
73 HRESULT setIRQ(ULONG aIRQ);
/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.h228 QString toCOMPortName (ulong aIRQ, ulong aIOBase) const;
229 bool toCOMPortNumbers (const QString &aName, ulong &aIRQ, ulong &aIOBase) const;
232 QString toLPTPortName (ulong aIRQ, ulong aIOBase) const;
233 bool toLPTPortNumbers (const QString &aName, ulong &aIRQ, ulong &aIOBase) const;
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...]
/vbox/src/VBox/Main/cbinding/
H A DVBoxCAPI_v4_3.h12980 #define ISerialPort_get_IRQ(p, aIRQ) ((p)->lpVtbl->GetIRQ(p, aIRQ))
12981 #define ISerialPort_GetIRQ(p, aIRQ) ((p)->lpVtbl->GetIRQ(p, aIRQ))
12982 #define ISerialPort_put_IRQ(p, aIRQ) ((p)->lpVtbl->SetIRQ(p, aIRQ))
12983 #define ISerialPort_SetIRQ(p, aIRQ) ((p)->lpVtbl->SetIRQ(p, aIRQ))
13071 #define IParallelPort_get_IRQ(p, aIRQ) ((p)->lpVtbl->GetIRQ(p, aIRQ))
[all...]

Completed in 167 milliseconds