Lines Matching defs:PosixEventSource
59 // We keep a list of client-supplied event sources in PosixEventSource records
60 struct PosixEventSource
65 struct PosixEventSource *Next;
67 typedef struct PosixEventSource PosixEventSource;
80 static GenLinkedList gEventSources; // linked list of PosixEventSource's
1735 PosixEventSource *iSource;
1738 for (iSource=(PosixEventSource*)gEventSources.Head; iSource; iSource = iSource->Next)
1746 PosixEventSource *newSource;
1749 InitLinkedList(&gEventSources, offsetof(PosixEventSource, Next));
1756 newSource = (PosixEventSource*) malloc(sizeof *newSource);
1775 PosixEventSource *iSource;
1777 for (iSource=(PosixEventSource*)gEventSources.Head; iSource; iSource = iSource->Next)
1846 PosixEventSource *iSource;
1850 for (iSource=(PosixEventSource*)gEventSources.Head; iSource; iSource = iSource->Next)