Searched defs:netaddrPP (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/windows/native/java/net/
H A DNetworkInterface_winXP.c44 extern int enumAddresses_win(JNIEnv *env, netif *netifP, netaddr **netaddrPP);
45 int getAddrsFromAdapter(IP_ADAPTER_ADDRESSES *ptr, netaddr **netaddrPP);
329 /* If *netaddrPP is null, then the addresses are allocated and the beginning
330 * of the allocated chain is returned in *netaddrPP.
331 * If *netaddrPP is not null, then the addresses allocated here are appended
337 static int getAddrsFromAdapter(IP_ADAPTER_ADDRESSES *ptr, netaddr **netaddrPP) { argument
346 if (*netaddrPP != NULL) {
347 for (start=*netaddrPP; start->next!=NULL; start=start->next) {
406 if (*netaddrPP == NULL) {
407 *netaddrPP
[all...]
H A DNetworkInterface.c352 * netaddrPP will return a list of netaddr structures with the IP addresses.
354 int enumAddresses_win(JNIEnv *env, netif *netifP, netaddr **netaddrPP) argument
450 *netaddrPP = netaddrP;

Completed in 529 milliseconds