Home
last modified time | relevance | path

Searched refs:term_width (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/progress_reporting/
H A DTestTrimmedProgressReporting.py17 def do_test(self, term_width, pattern_list): argument
23 self.expect("set set term-width " + str(term_width))
24 self.expect("set show term-width", substrs=["term-width (int) = " + str(term_width)])
/llvm-project-15.0.7/lldb/source/Core/
H A DDebugger.cpp350 bool Debugger::SetTerminalWidth(uint32_t term_width) { in SetTerminalWidth() argument
355 return m_collection_sp->SetPropertyAtIndexAsSInt64(nullptr, idx, term_width); in SetTerminalWidth()
797 OptionValueSInt64 *term_width = in Debugger() local
800 term_width->SetMinimumValue(10); in Debugger()
801 term_width->SetMaximumValue(1024); in Debugger()
1889 const uint32_t term_width = GetTerminalWidth(); in HandleProgressEvent() local
1891 if (message.size() + ellipsis >= term_width) in HandleProgressEvent()
1892 message = message.substr(0, term_width - ellipsis); in HandleProgressEvent()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBDebugger.i445 SetTerminalWidth (uint32_t term_width);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBDebugger.h304 void SetTerminalWidth(uint32_t term_width);
/llvm-project-15.0.7/lldb/source/API/
H A DSBDebugger.cpp1338 void SBDebugger::SetTerminalWidth(uint32_t term_width) { in SetTerminalWidth() argument
1339 LLDB_INSTRUMENT_VA(this, term_width); in SetTerminalWidth()
1342 m_opaque_sp->SetTerminalWidth(term_width); in SetTerminalWidth()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDebugger.h289 bool SetTerminalWidth(uint32_t term_width);