Home | History | Annotate | Download | only in GdbSerialLib

Lines Matching defs:Parity

73   UINT8     Parity;

79 Parity = PcdGet8 (PcdGdbParity);
83 return GdbSerialInit (BaudRate, Parity, DataBits, StopBits);
89 Sets the baud rate, receive FIFO depth, transmit/receice time out, parity,
95 @param Parity The type of parity to use on this serial device. A Parity value of
96 DefaultParity will use the device's default parity value.
111 IN UINT8 Parity,
138 OutputData = (UINT8)((DLAB << 7) | ((BreakSet << 6) | ((Parity << 3) | ((StopBits << 2) | Data))));
151 OutputData = (UINT8)((~DLAB<<7)|((BreakSet<<6)|((Parity<<3)|((StopBits<<2)| Data))));