Searched refs:port_cstr (Results 1 – 1 of 1) sorted by relevance
1065 char port_cstr[32]; in StartDebugserverProcess() local1066 snprintf(port_cstr, sizeof(port_cstr), "127.0.0.1:%i", port_); in StartDebugserverProcess()1071 debugserver_args.AppendArgument(llvm::StringRef(port_cstr)); in StartDebugserverProcess()1168 char port_cstr[PATH_MAX] = {0}; in StartDebugserverProcess() local1169 port_cstr[0] = '\0'; in StartDebugserverProcess()1170 size_t num_bytes = sizeof(port_cstr); in StartDebugserverProcess()1173 port_cstr, num_bytes, std::chrono::seconds{10}, num_bytes); in StartDebugserverProcess()1175 assert(num_bytes > 0 && port_cstr[num_bytes - 1] == '\0'); in StartDebugserverProcess()1176 uint16_t child_port = StringConvert::ToUInt32(port_cstr, 0); in StartDebugserverProcess()