Searched refs:port_str (Results 1 - 9 of 9) sorted by relevance

/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dser-tcp.c59 char *port_str, hostname[100]; local
74 port_str = strchr (name, ':');
76 if (!port_str)
79 tmp = min (port_str - name, (int) sizeof hostname - 1);
82 port = atoi (port_str + 1);
H A Dremote-m32r-sdi.c352 char *port_str, hostname[256]; local
368 port_str = strchr (args, ':');
369 if (port_str == NULL)
/openbsd-current/sbin/isakmpd/
H A Dudp_encap.c234 char *addr_str, *port_str; local
236 port_str = conf_get_str(name, "Port"); /* XXX "Encap-port" ? */
237 if (!port_str)
238 port_str = udp_encap_default_port;
239 if (!port_str)
240 port_str = UDP_ENCAP_DEFAULT_PORT_STR;
248 if (text2sockaddr(addr_str, port_str, &dst, 0, 0)) {
276 if (text2sockaddr(addr_node->field, port_str,
292 if (text2sockaddr(addr_str, port_str, &addr, 0, 0)) {
302 "%s:%s must exist as a listener too", addr_str, port_str);
[all...]
H A Dudp.c272 char *addr_str, *port_str; local
276 port_str = conf_get_str(name, "Port");
277 if (!port_str)
278 port_str = udp_default_port;
279 if (!port_str)
280 port_str = UDP_DEFAULT_PORT_STR;
288 if (text2sockaddr(addr_str, port_str, &dst, 0, 0)) {
319 port_str, &addr, 0, 0) == 0) {
332 if (text2sockaddr(addr_str, port_str, &addr, 0, 0)) {
342 addr_str, port_str);
[all...]
H A Dutil.c169 text2port(char *port_str) argument
175 port_long = strtol(port_str, &port_str_end, 0);
176 if (port_str == port_str_end) {
177 service = getservbyname(port_str, "udp");
180 port_str);
/openbsd-current/gnu/usr.bin/binutils/gdb/gdbserver/
H A Dgdbreplay.c105 char *port_str; local
111 port_str = strchr (name, ':');
113 port = atoi (port_str + 1);
H A Dremote-utils.c122 char *port_str; local
128 port_str = strchr (name, ':');
130 port = atoi (port_str + 1);
/openbsd-current/gnu/llvm/lldb/tools/debugserver/source/
H A Ddebugserver.cpp715 char port_str[64]; local
717 ::snprintf(port_str, sizeof(port_str), "%u", port);
719 ::write(fd, port_str, port_str_len + 1);
1373 std::string port_str = local
1376 port = strtoul(port_str.c_str(), &end_ptr, 0);
1377 if (end_ptr < port_str.c_str() + port_str.size())
/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp873 [this](llvm::StringRef port_str) {
875 llvm::to_integer(port_str, port, 10);

Completed in 175 milliseconds