Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Interpreter/
HDCommandHistory.cpp21 m_history() in CommandHistory()
31 return m_history.size(); in GetSize()
38 return m_history.empty(); in IsEmpty()
55 if (idx > m_history.size()) in FindString()
57 idx = m_history.size() - idx; in FindString()
58 return m_history[idx].c_str(); in FindString()
63 if (m_history.empty()) in FindString()
66 return m_history.back().c_str(); in FindString()
74 if (idx >= m_history.size()) in FindString()
76 return m_history[idx].c_str(); in FindString()
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Host/common/
HDEditline.cpp180 m_history (NULL), in EditlineHistory()
185 m_history = history_winit(); in EditlineHistory()
186 history_w (m_history, &m_event, H_SETSIZE, size); in EditlineHistory()
188 history_w (m_history, &m_event, H_SETUNIQUE, 1); in EditlineHistory()
194 if (m_path.empty() && m_history && !m_prefix.empty()) in GetHistoryFilePath()
219 if (m_history) in ~EditlineHistory()
221 history_wend (m_history); in ~EditlineHistory()
222 m_history = NULL; in ~EditlineHistory()
249 return m_history != NULL; in IsValid()
255 return m_history; in GetHistoryPtr()
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
HDGDBRemoteCommunication.cpp167 m_history (512), in GDBRemoteCommunication()
211 m_history.AddPacket (ch, History::ePacketTypeSend, bytes_written); in SendAck()
224 m_history.AddPacket (ch, History::ePacketTypeSend, bytes_written); in SendNack()
270 if (!m_history.DidDumpToLog ()) in SendPacketNoLock()
271 m_history.Dump (log); in SendPacketNoLock()
290m_history.AddPacket (packet.GetString(), packet_length, History::ePacketTypeSend, bytes_written); in SendPacketNoLock()
921 if (!m_history.DidDumpToLog ()) in CheckForPacket()
922 m_history.Dump (log); in CheckForPacket()
971m_history.AddPacket (m_bytes.c_str(), total_length, History::ePacketTypeRecv, total_length); in CheckForPacket()
1393 m_history.Dump (strm); in DumpHistory()
HDGDBRemoteCommunication.h337 History m_history; variable
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDCommandHistory.h71 History m_history; variable