Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1045 char port_cstr[32]; in StartDebugserverProcess() local
1046 snprintf(port_cstr, sizeof(port_cstr), "127.0.0.1:%i", port_); in StartDebugserverProcess()
1051 debugserver_args.AppendArgument(llvm::StringRef(port_cstr)); in StartDebugserverProcess()
1148 char port_cstr[PATH_MAX] = {0}; in StartDebugserverProcess() local
1149 port_cstr[0] = '\0'; in StartDebugserverProcess()
1150 size_t num_bytes = sizeof(port_cstr); in StartDebugserverProcess()
1153 port_cstr, num_bytes, std::chrono::seconds{10}, num_bytes); in StartDebugserverProcess()
1155 assert(num_bytes > 0 && port_cstr[num_bytes - 1] == '\0'); in StartDebugserverProcess()
1158 llvm::to_integer(port_cstr, child_port); in StartDebugserverProcess()