Home
last modified time | relevance | path

Searched refs:nWatchFds (Results 1 – 3 of 3) sorted by relevance

/dports/x11-wm/compiz/compiz-0.8.8/src/
H A Ddisplay.c938 core.nWatchFds++; in compAddWatchFd()
941 core.nWatchFds * sizeof (struct pollfd)); in compAddWatchFd()
943 core.watchPollFds[core.nWatchFds - 1].fd = fd; in compAddWatchFd()
944 core.watchPollFds[core.nWatchFds - 1].events = events; in compAddWatchFd()
955 for (i = core.nWatchFds - 1, w = core.watchFds; w; i--, w = w->next) in compRemoveWatchFd()
970 core.nWatchFds--; in compRemoveWatchFd()
972 if (i < core.nWatchFds) in compRemoveWatchFd()
974 (core.nWatchFds - i) * sizeof (struct pollfd)); in compRemoveWatchFd()
986 for (i = core.nWatchFds - 1, w = core.watchFds; w; i--, w = w->next) in compWatchFdEvents()
1221 rv = poll (core.watchPollFds, core.nWatchFds, timeout); in doPoll()
[all …]
H A Dcore.c182 core.nWatchFds = 0; in initCore()
/dports/x11-wm/compiz/compiz-0.8.8/include/
H A Dcompiz-core.h681 int nWatchFds; member