Home | History | Annotate | Download | only in coregrind

Lines Matching defs:port

815 Int parse_inet_addr_and_port ( const HChar* str, UInt* ip_addr, UShort* port );
866 an ip address and port pair, "192.168.0.1:1500". Parse these,
869 -2 if no parse error, but specified host:port cannot be opened
879 UShort port = VG_CLO_DEFAULT_LOGPORT;
880 Bool ok = parse_inet_addr_and_port(str, &ip, &port);
885 // VG_(printf)("ip = %d.%d.%d.%d, port %d\n",
888 // (UInt)port );
892 servAddr.sin_port = VG_(htons)(port);
919 static Int parse_inet_addr_and_port ( const HChar* str, UInt* ip_addr, UShort* port )
952 *port = (UShort)j;