Home
last modified time | relevance | path

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

/external/llvm-project/lldb/tools/lldb-server/
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()
212 port_offset, LOW_PORT, HIGH_PORT); in main_platform()
309 if (port_offset > 0) in main_platform()
310 platform.SetPortOffset(port_offset); in main_platform()
/external/tensorflow/tensorflow/python/distribute/cluster_resolver/
Dslurm_cluster_resolver.py326 for port_offset, gpu_offset in zip(
329 host_addr = '%s:%d' % (host, self._port_base + port_offset)
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationServerPlatform.h86 void SetPortOffset(uint16_t port_offset);
DGDBRemoteCommunicationServerPlatform.cpp603 void GDBRemoteCommunicationServerPlatform::SetPortOffset(uint16_t port_offset) { in SetPortOffset() argument
604 m_port_offset = port_offset; in SetPortOffset()
/external/llvm-project/lldb/source/Plugins/Platform/gdb-server/
DPlatformRemoteGDBServer.cpp820 int port_offset = port_offset_c_str ? ::atoi(port_offset_c_str) : 0; in MakeGdbServerUrl() local
825 port + port_offset, socket_name); in MakeGdbServerUrl()