Lines Matching defs:Host
1349 Py_UNICODE *Host;
1362 Host = (wchar_t *)_PyUnicode_AsUnicode(Host_obj);
1364 Host = PyUnicode_AsWideCharString(Host_obj, NULL);
1366 if (Host == NULL) {
1370 if (WSAStringToAddressW(Host, AF_INET, NULL, Address, &Length) < 0) {
1378 PyMem_Free(Host);
1390 Host = (wchar_t *)_PyUnicode_AsUnicode(Host_obj);
1392 Host = PyUnicode_AsWideCharString(Host_obj, NULL);
1394 if (Host == NULL) {
1398 if (WSAStringToAddressW(Host, AF_INET6, NULL, Address, &Length) < 0) {
1408 PyMem_Free(Host);