Lines Matching full:isource
1525 PosixEventSource *iSource;
1528 for (iSource=(PosixEventSource*)gEventSources.Head; iSource; iSource = iSource->Next)
1529 if (gMaxFD < iSource->fd)
1530 gMaxFD = iSource->fd;
1565 PosixEventSource *iSource;
1567 for (iSource=(PosixEventSource*)gEventSources.Head; iSource; iSource = iSource->Next)
1569 if (fd == iSource->fd)
1572 RemoveFromList(&gEventSources, iSource);
1573 free(iSource);
1636 PosixEventSource *iSource;
1640 for (iSource=(PosixEventSource*)gEventSources.Head; iSource; iSource = iSource->Next)
1642 if (FD_ISSET(iSource->fd, &listenFDs))
1644 iSource->Callback(iSource->fd, 0, iSource->Context);