Home
last modified time | relevance | path

Searched refs:port_offset (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/tools/lldb-server/
H A Dlldb-platform.cpp162 uint16_t port_offset = 0; in main_platform() local
204 if (!llvm::to_integer(optarg, port_offset)) { in main_platform()
209 if (port_offset < LOW_PORT || port_offset > HIGH_PORT) { in main_platform()
213 port_offset, LOW_PORT, HIGH_PORT); in main_platform()
312 if (port_offset > 0) in main_platform()
313 platform.SetPortOffset(port_offset); in main_platform()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.h86 void SetPortOffset(uint16_t port_offset);
H A DGDBRemoteCommunicationServerPlatform.cpp594 void GDBRemoteCommunicationServerPlatform::SetPortOffset(uint16_t port_offset) { in SetPortOffset() argument
595 m_port_offset = port_offset; in SetPortOffset()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp777 int port_offset = port_offset_c_str ? ::atoi(port_offset_c_str) : 0; in MakeGdbServerUrl() local
782 port + port_offset, socket_name); in MakeGdbServerUrl()