Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Core/
H A DDebugger.cpp357 bool Debugger::SetTerminalWidth(uint32_t term_width) { in SetTerminalWidth() argument
362 return m_collection_sp->SetPropertyAtIndexAsSInt64(nullptr, idx, term_width); in SetTerminalWidth()
817 OptionValueSInt64 *term_width = in Debugger() local
820 term_width->SetMinimumValue(10); in Debugger()
821 term_width->SetMaximumValue(1024); in Debugger()
1909 const uint32_t term_width = GetTerminalWidth(); in HandleProgressEvent() local
1911 if (message.size() + ellipsis >= term_width) in HandleProgressEvent()
1912 message = message.substr(0, term_width - ellipsis); in HandleProgressEvent()
/openbsd-src/gnu/usr.bin/binutils/gdb/tui/
H A Dtui-data.c43 static int term_height, term_width; variable
281 return term_width; in tui_term_width()
289 term_width = w; in tui_set_term_width_to()
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBDebugger.i447 SetTerminalWidth (uint32_t term_width);
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBDebugger.h321 void SetTerminalWidth(uint32_t term_width);
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DDebugger.h287 bool SetTerminalWidth(uint32_t term_width);
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBDebugger.cpp1376 void SBDebugger::SetTerminalWidth(uint32_t term_width) { in SetTerminalWidth() argument
1377 LLDB_INSTRUMENT_VA(this, term_width); in SetTerminalWidth()
1380 m_opaque_sp->SetTerminalWidth(term_width); in SetTerminalWidth()