Home
last modified time | relevance | path

Searched refs:serial_options (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/source/Host/common/
H A DFile.cpp769 SerialPort::Options serial_options; in OptionsFromURL() local
777 serial_options.BaudRate = baud_rate; in OptionsFromURL()
779 serial_options.Parity = in OptionsFromURL()
787 if (!serial_options.Parity) in OptionsFromURL()
793 serial_options.ParityCheck = in OptionsFromURL()
802 if (!serial_options.ParityCheck) in OptionsFromURL()
819 return serial_options; in OptionsFromURL()
835 if (serial_options.BaudRate) { in Create()
839 if (serial_options.Parity) { in Create()
843 if (serial_options.ParityCheck) { in Create()
[all …]
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp769 llvm::Expected<SerialPort::Options> serial_options = in ConnectSerialPort() local
771 if (!serial_options) { in ConnectSerialPort()
773 *error_ptr = serial_options.takeError(); in ConnectSerialPort()
775 llvm::consumeError(serial_options.takeError()); in ConnectSerialPort()
787 fd, File::eOpenOptionReadWrite, serial_options.get(), true); in ConnectSerialPort()
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DFile.h451 Create(int fd, OpenOptions options, Options serial_options,
467 SerialPort(int fd, OpenOptions options, Options serial_options,