Home
last modified time | relevance | path

Searched refs:pAddresses (Results 1 – 1 of 1) sorted by relevance

/PHP-7.4/ext/standard/
H A Dnet.c158 PIP_ADAPTER_ADDRESSES pAddresses = NULL, p; in PHP_FUNCTION() local
167 if (GetAdaptersAddresses(family, flags, NULL, pAddresses, &outBufLen) == ERROR_BUFFER_OVERFLOW) { in PHP_FUNCTION()
168 FREE(pAddresses); in PHP_FUNCTION()
169 pAddresses = (IP_ADAPTER_ADDRESSES *) MALLOC(outBufLen); in PHP_FUNCTION()
172 if (pAddresses == NULL) { in PHP_FUNCTION()
177 dwRetVal = GetAdaptersAddresses(family, flags, NULL, pAddresses, &outBufLen); in PHP_FUNCTION()
183 FREE(pAddresses); in PHP_FUNCTION()
188 for (p = pAddresses; p; p = p->Next) { in PHP_FUNCTION()
262 FREE(pAddresses); in PHP_FUNCTION()

Completed in 5 milliseconds