Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Host/common/
H A DTerminal.cpp298 llvm::Error Terminal::SetStopBits(unsigned int stop_bits) { in SetStopBits() argument
305 switch (stop_bits) { in SetStopBits()
315 "invalid stop bit count: %d (must be 1 or 2)", stop_bits); in SetStopBits()
H A DFile.cpp808 unsigned int stop_bits; in OptionsFromURL() local
809 if (!llvm::to_integer(x, stop_bits, 10) || in OptionsFromURL()
810 (stop_bits != 1 && stop_bits != 2)) in OptionsFromURL()
814 serial_options.StopBits = stop_bits; in OptionsFromURL()
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DTerminal.h64 llvm::Error SetStopBits(unsigned int stop_bits);