Searched refs:hints (Results 1 - 3 of 3) sorted by relevance

/gem5/util/term/
H A Dterm.c63 struct addrinfo hints; local
91 memset(&hints, 0, sizeof(struct addrinfo));
92 hints.ai_family = AF_UNSPEC;
93 hints.ai_socktype = SOCK_STREAM;
94 hints.ai_protocol = IPPROTO_TCP;
96 s = remote_connect(host, port, hints);
112 remote_connect(char *host, char *port, struct addrinfo hints) argument
117 if ((error = getaddrinfo(host, port, &hints, &res)))
/gem5/src/dev/virtio/
H A Dfs9p.cc512 struct addrinfo hints, *result; local
513 memset(&hints, 0, sizeof(hints));
514 hints.ai_family = AF_UNSPEC;
515 hints.ai_socktype = SOCK_STREAM;
516 hints.ai_flags = 0;
517 hints.ai_protocol = 0;
520 &hints, &result)) != 0)
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc3784 addrinfo hints; local
3785 memset(&hints, 0, sizeof(hints));
3786 hints.ai_family = AF_UNSPEC; // To allow both IPv4 and IPv6 addresses.
3787 hints.ai_socktype = SOCK_STREAM;
3793 host_name_.c_str(), port_num_.c_str(), &hints, &servinfo);

Completed in 32 milliseconds