Home
last modified time | relevance | path

Searched refs:numevents (Results 1 – 5 of 5) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dae_select.c79 int retval, j, numevents = 0; in aeApiPoll() local
96 eventLoop->fired[numevents].fd = j; in aeApiPoll()
97 eventLoop->fired[numevents].mask = mask; in aeApiPoll()
98 numevents++; in aeApiPoll()
101 return numevents; in aeApiPoll()
H A Dae_ff_kqueue.c108 int retval, numevents = 0; in aeApiPoll() local
124 numevents = retval; in aeApiPoll()
125 for(j = 0; j < numevents; j++) { in aeApiPoll()
135 return numevents; in aeApiPoll()
H A Dae_epoll.c110 int retval, numevents = 0; in aeApiPoll() local
117 numevents = retval; in aeApiPoll()
118 for (j = 0; j < numevents; j++) { in aeApiPoll()
130 return numevents; in aeApiPoll()
H A Dae_kqueue.c106 int retval, numevents = 0; in aeApiPoll() local
122 numevents = retval; in aeApiPoll()
123 for(j = 0; j < numevents; j++) { in aeApiPoll()
133 return numevents; in aeApiPoll()
H A Dae.c368 int processed = 0, numevents; in aeProcessEvents() local
419 numevents = aeApiPoll(eventLoop, tvp); in aeProcessEvents()
425 for (j = 0; j < numevents; j++) { in aeProcessEvents()