Searched refs:SerialPort (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/lldb/include/lldb/Host/ |
| H A D | File.h | 437 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 D | File.cpp | 767 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 D | ConnectionFileDescriptorPosix.cpp | 769 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()
|