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

/vbox/src/VBox/Main/include/
H A DParallelPortImpl.h62 HRESULT getIOBase(ULONG *aIOBase);
63 HRESULT setIOBase(ULONG aIOBase);
H A DSerialPortImpl.h74 HRESULT getIOBase(ULONG *aIOBase);
75 HRESULT setIOBase(ULONG aIOBase);
/vbox/src/VBox/Main/src-server/
H A DParallelPortImpl.cpp292 HRESULT ParallelPort::getIOBase(ULONG *aIOBase) argument
296 *aIOBase = m->bd->ulIOBase;
301 HRESULT ParallelPort::setIOBase(ULONG aIOBase) argument
305 if (aIOBase > 0xFFFF)
308 m->bd->ulSlot, aIOBase, 0, 0xFFFF);
316 if (m->bd->ulIOBase != aIOBase)
319 m->bd->ulIOBase = aIOBase;
H A DSerialPortImpl.cpp343 HRESULT SerialPort::getIOBase(ULONG *aIOBase) argument
347 *aIOBase = m->bd->ulIOBase;
352 HRESULT SerialPort::setIOBase(ULONG aIOBase) argument
356 if (aIOBase > 0xFFFF)
359 m->bd->ulSlot, aIOBase, 0, 0xFFFF);
372 if (m->bd->ulIOBase != aIOBase)
375 m->bd->ulIOBase = aIOBase;
/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
731 kComKnownPorts [i].IOBase == aIOBase)
740 * @a aIRQ and @a aIOBase are 0).
742 QString VBoxGlobal::toLPTPortName (ulong aIRQ, ulong aIOBase) const
746 kLptKnownPorts [i].IOBase == aIOBase)
758 ulong &aIOBase) const
764 aIOBase = kComKnownPorts [i].IOBase;
777 ulong &aIOBase) const
783 aIOBase
[all...]
/vbox/src/VBox/Main/cbinding/
H A DVBoxCAPI_v4_3.h12976 #define ISerialPort_get_IOBase(p, aIOBase) ((p)->lpVtbl->GetIOBase(p, aIOBase))
12977 #define ISerialPort_GetIOBase(p, aIOBase) ((p)->lpVtbl->GetIOBase(p, aIOBase))
12978 #define ISerialPort_put_IOBase(p, aIOBase) ((p)->lpVtbl->SetIOBase(p, aIOBase))
12979 #define ISerialPort_SetIOBase(p, aIOBase) ((p)->lpVtbl->SetIOBase(p, aIOBase))
13067 #define IParallelPort_get_IOBase(p, aIOBase) ((p)->lpVtbl->GetIOBase(p, aIOBase))
[all...]

Completed in 160 milliseconds