Lines Matching defs:iSource
1735 PosixEventSource *iSource;
1738 for (iSource=(PosixEventSource*)gEventSources.Head; iSource; iSource = iSource->Next)
1739 if (gMaxFD < iSource->fd)
1740 gMaxFD = iSource->fd;
1775 PosixEventSource *iSource;
1777 for (iSource=(PosixEventSource*)gEventSources.Head; iSource; iSource = iSource->Next)
1779 if (fd == iSource->fd)
1782 RemoveFromList(&gEventSources, iSource);
1783 free(iSource);
1846 PosixEventSource *iSource;
1850 for (iSource=(PosixEventSource*)gEventSources.Head; iSource; iSource = iSource->Next)
1852 if (FD_ISSET(iSource->fd, &listenFDs))
1854 iSource->Callback(iSource->fd, 0, iSource->Context);