41 references to Termios
System.IO.Ports (41)
_generated\0\LibraryImports.g.cs (9)
47
internal static partial int TermiosGetSignal(global::System.IO.Ports.SafeSerialDeviceHandle handle, global::Interop.
Termios
.Signals signal)
76
static extern unsafe int __PInvoke(nint __handle_native, global::Interop.
Termios
.Signals __signal_native);
86
internal static partial int TermiosGetSignal(global::System.IO.Ports.SafeSerialDeviceHandle handle, global::Interop.
Termios
.Signals signal, int set)
115
static extern unsafe int __PInvoke(nint __handle_native, global::Interop.
Termios
.Signals __signal_native, int __set_native);
125
internal static partial global::Interop.
Termios
.Signals TermiosGetAllSignals(global::System.IO.Ports.SafeSerialDeviceHandle handle)
128
global::Interop.
Termios
.Signals __retVal = default;
150
static extern unsafe global::Interop.
Termios
.Signals __PInvoke(nint __handle_native);
279
internal static partial int TermiosDiscard(global::System.IO.Ports.SafeSerialDeviceHandle handle, global::Interop.
Termios
.Queue input)
308
static extern unsafe int __PInvoke(nint __handle_native, global::Interop.
Termios
.Queue __input_native);
System\IO\Ports\SerialStream.Unix.cs (32)
12
using Signals = Interop.
Termios
.Signals;
133
return Interop.
Termios
.TermiosGetSpeed(_handle);
141
if (Interop.
Termios
.TermiosSetSpeed(_handle, value) < 0)
160
Interop.
Termios
.TermiosSendBreak(_handle, 0);
168
get { return Interop.
Termios
.TermiosGetAvailableBytes(_handle, false); }
173
get { return Interop.
Termios
.TermiosGetAvailableBytes(_handle, true); }
180
int status = Interop.
Termios
.TermiosGetSignal(_handle, Interop.
Termios
.Signals.SignalDcd);
194
int status = Interop.
Termios
.TermiosGetSignal(_handle, Interop.
Termios
.Signals.SignalCts);
208
int status = Interop.
Termios
.TermiosGetSignal(_handle, Interop.
Termios
.Signals.SignalDsr);
222
int status = Interop.
Termios
.TermiosGetSignal(_handle, Interop.
Termios
.Signals.SignalDtr);
233
if (Interop.
Termios
.TermiosGetSignal(_handle, Interop.
Termios
.Signals.SignalDtr, value ? 1 : 0) != 0)
242
int status = Interop.
Termios
.TermiosGetSignal(_handle, Interop.
Termios
.Signals.SignalRts);
266
if (Interop.
Termios
.TermiosGetSignal(_handle, Interop.
Termios
.Signals.SignalRts, value ? 1 : 0) != 0)
282
if (Interop.
Termios
.TermiosReset(_handle, _baudRate, _dataBits, _stopBits, _parity, value) != 0)
299
if (Interop.
Termios
.TermiosReset(_handle, _baudRate, value, _stopBits, _parity, _handshake) != 0)
317
if (Interop.
Termios
.TermiosReset(_handle, _baudRate, _dataBits, _stopBits, value, _handshake) != 0)
334
if (Interop.
Termios
.TermiosReset(_handle, _baudRate, _dataBits, value, _parity, _handshake) != 0)
372
Interop.
Termios
.TermiosDiscard(_handle, Interop.
Termios
.Queue.ReceiveQueue);
379
Interop.
Termios
.TermiosDiscard(_handle, Interop.
Termios
.Queue.SendQueue);
408
Interop.
Termios
.TermiosDrain(_handle);
621
if (Interop.
Termios
.TermiosReset(_handle, _baudRate, _dataBits, _stopBits, _parity, _handshake) != 0)
894
Signals lastSignals = _pinChanged != null ? Interop.
Termios
.TermiosGetAllSignals(_handle) : Signals.Error;
996
Signals current = Interop.
Termios
.TermiosGetAllSignals(_handle);