Searched refs:serial_options (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | File.cpp | 813 SerialPort::Options serial_options; in OptionsFromURL() local 821 serial_options.BaudRate = baud_rate; in OptionsFromURL() 823 serial_options.Parity = in OptionsFromURL() 831 if (!serial_options.Parity) in OptionsFromURL() 837 serial_options.ParityCheck = in OptionsFromURL() 846 if (!serial_options.ParityCheck) in OptionsFromURL() 858 serial_options.StopBits = stop_bits; in OptionsFromURL() 863 return serial_options; in OptionsFromURL() 867 SerialPort::Create(int fd, OpenOptions options, Options serial_options, in Create() argument 870 new SerialPort(fd, options, serial_options, transfer_ownership)}; in Create() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Host/posix/ |
| H A D | ConnectionFileDescriptorPosix.cpp | 766 llvm::Expected<SerialPort::Options> serial_options = in ConnectSerialPort() local 768 if (!serial_options) { in ConnectSerialPort() 770 *error_ptr = Status::FromError(serial_options.takeError()); in ConnectSerialPort() 772 llvm::consumeError(serial_options.takeError()); in ConnectSerialPort() 784 fd, File::eOpenOptionReadWrite, serial_options.get(), true); in ConnectSerialPort()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | File.h | 477 Create(int fd, OpenOptions options, Options serial_options, 493 SerialPort(int fd, OpenOptions options, Options serial_options,
|