Lines Matching defs:node
66 DECLSPEC_IMPORT int WSAAPI GetAddrInfoW(const WCHAR* node,
91 err = GetAddrInfoW(req->node, req->service, hints, &req->addrinfow);
260 const char* node,
271 if (req == NULL || (node == NULL && service == NULL)) {
282 if (node != NULL) {
283 rc = uv__idna_toascii(node,
284 node + strlen(node),
295 node = hostname_ascii;
325 /* Convert node string to UTF16 into allocated memory and save pointer in the
327 if (node != NULL) {
328 req->node = (WCHAR*)alloc_ptr;
331 node,
340 req->node = NULL;