Searched defs:ICharConnector (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/Serial/
H A DDrvChar.cpp42 /** Converts a pointer to DRVCHAR::ICharConnector to a PDRVCHAR. */
43 #define PDMICHAR_2_DRVCHAR(pInterface) RT_FROM_MEMBER(pInterface, DRVCHAR, ICharConnector)
63 PDMICHARCONNECTOR ICharConnector; member in struct:DRVCHAR
98 PDMIBASE_RETURN_INTERFACE(pszIID, PDMICHARCONNECTOR, &pThis->ICharConnector);
103 /* -=-=-=-=- ICharConnector -=-=-=-=- */
360 /* ICharConnector. */
361 pThis->ICharConnector.pfnWrite = drvCharWrite;
362 pThis->ICharConnector.pfnSetParameters = drvCharSetParameters;
363 pThis->ICharConnector.pfnSetModemLines = drvCharSetModemLines;
364 pThis->ICharConnector
[all...]
H A DDrvHostSerial.cpp91 PDMICHARCONNECTOR ICharConnector; member in struct:DRVHOSTSERIAL
152 /** Converts a pointer to DRVCHAR::ICharConnector to a PDRVHOSTSERIAL. */
153 #define PDMICHAR_2_DRVHOSTSERIAL(pInterface) RT_FROM_MEMBER(pInterface, DRVHOSTSERIAL, ICharConnector)
167 PDMIBASE_RETURN_INTERFACE(pszIID, PDMICHARCONNECTOR, &pThis->ICharConnector);
172 /* -=-=-=-=- ICharConnector -=-=-=-=- */
1146 /* ICharConnector. */
1147 pThis->ICharConnector.pfnWrite = drvHostSerialWrite;
1148 pThis->ICharConnector.pfnSetParameters = drvHostSerialSetParameters;
1149 pThis->ICharConnector.pfnSetModemLines = drvHostSerialSetModemLines;
1150 pThis->ICharConnector
[all...]

Completed in 61 milliseconds