Searched refs:pAddresses (Results 1 – 1 of 1) sorted by relevance
160 PIP_ADAPTER_ADDRESSES pAddresses = NULL, p; in PHP_FUNCTION() local169 if (GetAdaptersAddresses(family, flags, NULL, pAddresses, &outBufLen) == ERROR_BUFFER_OVERFLOW) { in PHP_FUNCTION()170 FREE(pAddresses); in PHP_FUNCTION()171 pAddresses = (IP_ADAPTER_ADDRESSES *) MALLOC(outBufLen); in PHP_FUNCTION()174 if (pAddresses == NULL) { in PHP_FUNCTION()179 dwRetVal = GetAdaptersAddresses(family, flags, NULL, pAddresses, &outBufLen); in PHP_FUNCTION()185 FREE(pAddresses); in PHP_FUNCTION()190 for (p = pAddresses; p; p = p->Next) { in PHP_FUNCTION()264 FREE(pAddresses); in PHP_FUNCTION()
Completed in 7 milliseconds