• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/

Lines Matching refs:history

73 #define history_w history
101 // The naming used by editline for the history operations is counter
104 // - The H_PREV operation returns the previous element in the history, which
107 // - The H_NEXT operation returns the next element in the history, which is
202 // Compute the history path lazily.
208 // LLDB stores its history in ~/.lldb/. If for some reason this directory
209 // isn't writable or cannot be created, history won't be available.
214 std::string filename = m_prefix + "-history";
287 HistoryW *m_history; // The history object
288 HistEventW m_event; // The history event needed to contain all history events
290 // to use when loading/saving history
291 std::string m_path; // Path to the history file
472 // in history (it would be more bash-like to save over any current entry,
480 llvm_unreachable("unsupported history direction");
494 llvm_unreachable("unsupported history direction");
499 // If we're pulling the lines from history, split them apart
518 llvm_unreachable("unsupported history direction");
796 // history instead
1056 fputs("Could not load history file\n.", m_output_file);
1058 el_wset(m_editline, EL_HIST, history, m_history_sp->GetHistoryPtr());
1106 el_wset(m_editline, EL_ADDFN, EditLineConstString("lldb-previous-history"),
1107 EditLineConstString("Move to previous history"),
1111 el_wset(m_editline, EL_ADDFN, EditLineConstString("lldb-next-history"),
1112 EditLineConstString("Move to next history"),
1206 el_set(m_editline, EL_BIND, ESCAPE ESCAPE "[A", "lldb-previous-history",
1208 el_set(m_editline, EL_BIND, ESCAPE ESCAPE "[B", "lldb-next-history",
1210 el_set(m_editline, EL_BIND, ESCAPE "[1;3A", "lldb-previous-history",
1212 el_set(m_editline, EL_BIND, ESCAPE "[1;3B", "lldb-next-history", NULL);
1247 // Get a shared history instance
1291 // and if we are the last owner, it will save the history to the history save
1447 // Save the completed entry in history before returning