Home
last modified time | relevance | path

Searched refs:m_port_map (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.cpp51 m_port_map[min_port] = LLDB_INVALID_PROCESS_ID; in PortMap()
57 m_port_map.insert({port, LLDB_INVALID_PROCESS_ID}); in AllowPort()
62 if (m_port_map.empty()) in GetNextAvailablePort()
66 for (auto &pair : m_port_map) { in GetNextAvailablePort()
78 auto pos = m_port_map.find(port); in AssociatePortWithProcess()
79 if (pos != m_port_map.end()) { in AssociatePortWithProcess()
87 std::map<uint16_t, lldb::pid_t>::iterator pos = m_port_map.find(port); in FreePort()
88 if (pos != m_port_map.end()) { in FreePort()
97 if (!m_port_map.empty()) { in FreePortForProcess()
98 for (auto &pair : m_port_map) { in FreePortForProcess()
[all …]
H A DGDBRemoteCommunicationServerPlatform.h72 std::map<uint16_t, lldb::pid_t> m_port_map;
105 PortMap m_port_map; variable