Lines Matching refs:pChgRec
1323 IfChangeRec *pChgRec = (IfChangeRec*) context; in InterfaceChangeCallback() local
1329 FD_SET( pChgRec->NotifySD, &readFDs); in InterfaceChangeCallback()
1333 changedInterfaces |= ProcessRoutingNotification( pChgRec->NotifySD); in InterfaceChangeCallback()
1335 …while ( 0 < select( pChgRec->NotifySD + 1, &readFDs, (fd_set*) NULL, (fd_set*) NULL, &zeroTimeout)… in InterfaceChangeCallback()
1341 mDNSPlatformPosixRefreshInterfaceList( pChgRec->mDNS); in InterfaceChangeCallback()
1348 IfChangeRec *pChgRec; in WatchForInterfaceChange() local
1350 pChgRec = (IfChangeRec*) mDNSPlatformMemAllocate( sizeof *pChgRec); in WatchForInterfaceChange()
1351 if ( pChgRec == NULL) in WatchForInterfaceChange()
1354 pChgRec->mDNS = m; in WatchForInterfaceChange()
1355 err = OpenIfNotifySocket( &pChgRec->NotifySD); in WatchForInterfaceChange()
1357 err = mDNSPosixAddFDToEventLoop( pChgRec->NotifySD, InterfaceChangeCallback, pChgRec); in WatchForInterfaceChange()