Lines Matching defs:service
67 const WCHAR* service,
91 err = GetAddrInfoW(req->node, req->service, hints, &req->addrinfow);
242 const char* service,
251 if (req == NULL || (node == NULL && service == NULL)) {
273 if (service != NULL) {
274 rc = uv_wtf8_length_as_utf16(service);
303 /* Convert service string to UTF16 into allocated memory and save pointer in
305 if (service != NULL) {
306 req->service = (WCHAR*) alloc_ptr;
307 uv_wtf8_to_utf16(service, (WCHAR*) alloc_ptr, servicesize);
310 req->service = NULL;