Searched refs:add_to_history (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreterRunOptions.cpp136 void SBCommandInterpreterRunOptions::SetAddToHistory(bool add_to_history) { argument
137 LLDB_INSTRUMENT_VA(this, add_to_history);
139 m_opaque_up->SetAddToHistory(add_to_history);
H A DSBCommandInterpreter.cpp171 bool add_to_history) {
172 LLDB_INSTRUMENT_VA(this, command_line, result, add_to_history);
175 return HandleCommand(command_line, sb_exe_ctx, result, add_to_history);
180 SBCommandReturnObject &result, bool add_to_history) {
182 add_to_history);
187 auto do_add_to_history = add_to_history ? eLazyBoolYes : eLazyBoolNo;
169 HandleCommand(const char *command_line, SBCommandReturnObject &result, bool add_to_history) argument
178 HandleCommand( const char *command_line, SBExecutionContext &override_context, SBCommandReturnObject &result, bool add_to_history) argument
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h91 /// \param[in] add_to_history
98 LazyBool add_to_history)
102 m_print_errors(print_errors), m_add_to_history(add_to_history) {}
166 void SetAddToHistory(bool add_to_history) { argument
167 m_add_to_history = add_to_history ? eLazyBoolYes : eLazyBoolNo;
351 bool HandleCommand(const char *command_line, LazyBool add_to_history,
355 bool HandleCommand(const char *command_line, LazyBool add_to_history,
94 CommandInterpreterRunOptions(LazyBool stop_on_continue, LazyBool stop_on_error, LazyBool stop_on_crash, LazyBool echo_commands, LazyBool echo_comments, LazyBool print_results, LazyBool print_errors, LazyBool add_to_history) argument
/freebsd-current/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h194 bool add_to_history = false);
199 bool add_to_history = false);
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1886 bool add_to_history; local
1888 add_to_history = (m_command_source_depth == 0);
1890 add_to_history = (lazy_add_to_history == eLazyBoolYes);
1912 add_to_history = false;
1942 add_to_history = false;
1999 bool generate_repeat_command = add_to_history;
2021 if (add_to_history)
2566 // add_to_history will get lost. This m_command_source_depth dingus is the

Completed in 203 milliseconds