Home
last modified time | relevance | path

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

/external/lldb/source/Interpreter/
DCommandHistory.cpp19 m_history() in CommandHistory()
29 return m_history.size(); in GetSize()
36 return m_history.empty(); in IsEmpty()
53 if (idx > m_history.size()) in FindString()
55 idx = m_history.size() - idx; in FindString()
56 return m_history[idx].c_str(); in FindString()
61 if (m_history.empty()) in FindString()
64 return m_history.back().c_str(); in FindString()
72 if (idx >= m_history.size()) in FindString()
74 return m_history[idx].c_str(); in FindString()
[all …]
/external/lldb/tools/driver/
DIOChannel.cpp211 m_history (history_init()), in IOChannel()
221 ::el_set (m_edit_line, EL_HIST, history, m_history); in IOChannel()
235 assert (m_history); in IOChannel()
236 ::history (m_history, &m_history_event, H_SETSIZE, 800); in IOChannel()
237 ::history (m_history, &m_history_event, H_SETUNIQUE, 1); in IOChannel()
266 if (m_history != NULL) in ~IOChannel()
268 ::history_end (m_history); in ~IOChannel()
269 m_history = NULL; in ~IOChannel()
284 if (m_history != NULL) in HistorySaveLoad()
292 ::history (m_history, &m_history_event, H_SAVE, path_ptr); in HistorySaveLoad()
[all …]
DIOChannel.h142 History *m_history; variable
/external/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunication.cpp140 m_history (512), in GDBRemoteCommunication()
180 m_history.AddPacket (ch, History::ePacketTypeSend, bytes_written); in SendAck()
193 m_history.AddPacket (ch, History::ePacketTypeSend, bytes_written); in SendNack()
225 if (!m_history.DidDumpToLog ()) in SendPacketNoLock()
226 m_history.Dump (log); in SendPacketNoLock()
231m_history.AddPacket (packet.GetString(), packet.GetSize(), History::ePacketTypeSend, bytes_written… in SendPacketNoLock()
459 if (!m_history.DidDumpToLog ()) in CheckForPacket()
460 m_history.Dump (log); in CheckForPacket()
465m_history.AddPacket (m_bytes.c_str(), total_length, History::ePacketTypeRecv, total_length); in CheckForPacket()
645 m_history.Dump (strm); in DumpHistory()
DGDBRemoteCommunication.h252 History m_history; variable
/external/lldb/include/lldb/Interpreter/
DCommandHistory.h71 History m_history; variable