Searched refs:add_to_history (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBCommandInterpreterRunOptions.cpp | 136 void SBCommandInterpreterRunOptions::SetAddToHistory(bool add_to_history) { in SetAddToHistory() argument 137 LLDB_INSTRUMENT_VA(this, add_to_history); in SetAddToHistory() 139 m_opaque_up->SetAddToHistory(add_to_history); in SetAddToHistory()
|
H A D | SBCommandInterpreter.cpp | 172 bool add_to_history) { in HandleCommand() argument 173 LLDB_INSTRUMENT_VA(this, command_line, result, add_to_history); in HandleCommand() 176 return HandleCommand(command_line, sb_exe_ctx, result, add_to_history); in HandleCommand() 181 SBCommandReturnObject &result, bool add_to_history) { in HandleCommand() argument 183 add_to_history); in HandleCommand() 188 auto do_add_to_history = add_to_history ? eLazyBoolYes : eLazyBoolNo; in HandleCommand()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | CommandInterpreter.h | 103 LazyBool add_to_history, in CommandInterpreterRunOptions() argument 108 m_print_errors(print_errors), m_add_to_history(add_to_history), in CommandInterpreterRunOptions() 173 void SetAddToHistory(bool add_to_history) { in SetAddToHistory() argument 174 m_add_to_history = add_to_history ? eLazyBoolYes : eLazyBoolNo; in SetAddToHistory() 365 bool HandleCommand(const char *command_line, LazyBool add_to_history, 369 bool HandleCommand(const char *command_line, LazyBool add_to_history,
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBCommandInterpreter.h | 195 bool add_to_history = false); 200 bool add_to_history = false);
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | CommandInterpreter.cpp | 1866 bool add_to_history; in HandleCommand() local 1868 add_to_history = (m_command_source_depth == 0); in HandleCommand() 1870 add_to_history = (lazy_add_to_history == eLazyBoolYes); in HandleCommand() 1906 add_to_history = false; in HandleCommand() 1936 add_to_history = false; in HandleCommand() 1993 bool generate_repeat_command = add_to_history; in HandleCommand() 2015 if (add_to_history) in HandleCommand()
|