Searched refs:m_history (Results 1 - 6 of 6) sorted by relevance

/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandHistory.cpp19 m_history()
29 return m_history.size();
36 return m_history.empty();
53 if (idx > m_history.size())
55 idx = m_history.size() - idx;
56 return m_history[idx].c_str();
61 if (m_history.empty())
64 return m_history.back().c_str();
72 if (idx >= m_history.size())
74 return m_history[id
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandHistory.h71 History m_history; member in class:lldb_private::CommandHistory
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Host/common/
H A DEditline.cpp31 m_history (NULL),
56 m_history = ::history_init();
79 if (m_history)
81 ::el_set (m_editline, EL_HIST, history, m_history);
95 if (m_history)
97 ::history (m_history, &m_history_event, H_SETSIZE, 800);
98 ::history (m_history, &m_history_event, H_SETUNIQUE, 1);
114 if (m_history)
116 ::history_end (m_history);
117 m_history
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp146 m_history (512),
185 m_history.AddPacket (ch, History::ePacketTypeSend, bytes_written);
198 m_history.AddPacket (ch, History::ePacketTypeSend, bytes_written);
230 if (!m_history.DidDumpToLog ())
231 m_history.Dump (log);
236 m_history.AddPacket (packet.GetString(), packet.GetSize(), History::ePacketTypeSend, bytes_written);
471 if (!m_history.DidDumpToLog ())
472 m_history.Dump (log);
477 m_history.AddPacket (m_bytes.c_str(), total_length, History::ePacketTypeRecv, total_length);
800 m_history
[all...]
H A DGDBRemoteCommunication.h266 History m_history; member in class:GDBRemoteCommunication
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DEditline.h182 ::History *m_history; member in class:lldb_private::Editline

Completed in 64 milliseconds