reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/LineEditor/LineEditor.cpp
  216   ::el_set(Data->EL, EL_HIST, history, Data->Hist);
  229   ::history(Data->Hist, &HE, H_SETSIZE, 800);
  230   ::history(Data->Hist, &HE, H_SETUNIQUE, 1);
  245     ::history(Data->Hist, &HE, H_SAVE, HistoryPath.c_str());
  252     ::history(Data->Hist, &HE, H_LOAD, HistoryPath.c_str());
  272     ::history(Data->Hist, &HE, H_ENTER, Line);
tools/lldb/source/Host/common/Editline.cpp
  169     history_w(m_history, &m_event, H_SETSIZE, size);
  171       history_w(m_history, &m_event, H_SETUNIQUE, 1);
  234       history_w(m_history, &m_event, H_ENTER, line_cstr);
  241         history_w(m_history, &m_event, H_LOAD, path);
  252         history_w(m_history, &m_event, H_SAVE, path);
  438     if (history_w(pHistory, &history_event, H_FIRST) == -1)
  449     if (history_w(pHistory, &history_event, earlier ? H_PREV : H_NEXT) == -1) {
 1010     el_wset(m_editline, EL_HIST, history, m_history_sp->GetHistoryPtr());