Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DFile.h438 class SerialPort : public NativeFile {
451 static llvm::Expected<std::unique_ptr<SerialPort>>
468 SerialPort(int fd, OpenOptions options, Options serial_options,
471 SerialPort(const SerialPort &) = delete;
472 const SerialPort &operator=(const SerialPort &) = delete;
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DFile.cpp768 llvm::Expected<SerialPort::Options>
769 SerialPort::OptionsFromURL(llvm::StringRef urlqs) { in OptionsFromURL()
770 SerialPort::Options serial_options; in OptionsFromURL()
823 llvm::Expected<std::unique_ptr<SerialPort>>
824 SerialPort::Create(int fd, OpenOptions options, Options serial_options, in Create()
826 std::unique_ptr<SerialPort> out{ in Create()
827 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 …]
/openbsd-src/gnu/llvm/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()