Lines Matching refs:count
536 DWORD count, ret, timeout_val, err; in eloop_run() local
552 count = 0; in eloop_run()
554 eloop.handles[count++] = eloop.events[i].event; in eloop_run()
557 eloop.handles[count++] = eloop.readers[i].event; in eloop_run()
560 eloop.handles[count++] = eloop.term_event; in eloop_run()
567 if (count > MAXIMUM_WAIT_OBJECTS) { in eloop_run()
570 (int) count, MAXIMUM_WAIT_OBJECTS); in eloop_run()
571 count = MAXIMUM_WAIT_OBJECTS; in eloop_run()
574 ret = WaitForMultipleObjects(count, eloop.handles, FALSE, in eloop_run()
577 ret = WaitForMultipleObjectsEx(count, eloop.handles, FALSE, in eloop_run()
602 (int) count, (int) err); in eloop_run()