Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DFile.h437 class SerialPort : public NativeFile {
450 static llvm::Expected<std::unique_ptr<SerialPort>>
467 SerialPort(int fd, OpenOptions options, Options serial_options,
470 SerialPort(const SerialPort &) = delete;
471 const SerialPort &operator=(const SerialPort &) = delete;
/llvm-project-15.0.7/lldb/source/Host/common/
H A DFile.cpp767 llvm::Expected<SerialPort::Options>
768 SerialPort::OptionsFromURL(llvm::StringRef urlqs) { in OptionsFromURL()
769 SerialPort::Options serial_options; in OptionsFromURL()
822 llvm::Expected<std::unique_ptr<SerialPort>>
823 SerialPort::Create(int fd, OpenOptions options, Options serial_options, in Create()
825 std::unique_ptr<SerialPort> out{ in Create()
826 new SerialPort(fd, options, serial_options, transfer_ownership)}; in Create()
856 SerialPort::SerialPort(int fd, OpenOptions options, in SerialPort() function in SerialPort
857 SerialPort::Options serial_options, in SerialPort()
861 Status SerialPort::Close() { in Close()
[all …]
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp769 llvm::Expected<SerialPort::Options> serial_options = in ConnectSerialPort()
770 SerialPort::OptionsFromURL(qs); in ConnectSerialPort()
786 llvm::Expected<std::unique_ptr<SerialPort>> serial_sp = SerialPort::Create( in ConnectSerialPort()