Lines Matching refs:writeset_out
74 struct win_fd_set *writeset_out; member
191 if (!(winop->writeset_out = mm_malloc(size))) in win32_init()
196 winop->readset_out->fd_count = winop->writeset_out->fd_count in win32_init()
207 XFREE(winop->writeset_out); in win32_init()
288 if (!(win32op->writeset_out = mm_realloc(win32op->writeset_out, size))) in win32_dispatch()
295 fd_set_copy(win32op->writeset_out, win32op->writeset_in); in win32_dispatch()
298 (win32op->readset_out->fd_count > win32op->writeset_out->fd_count) ? in win32_dispatch()
299 win32op->readset_out->fd_count : win32op->writeset_out->fd_count; in win32_dispatch()
315 (struct fd_set*)win32op->writeset_out, in win32_dispatch()
344 if (win32op->writeset_out->fd_count) { in win32_dispatch()
346 i = rand() % win32op->writeset_out->fd_count; in win32_dispatch()
347 for (j=0; j<win32op->writeset_out->fd_count; ++j) { in win32_dispatch()
348 if (++i >= win32op->writeset_out->fd_count) in win32_dispatch()
350 s = win32op->writeset_out->fd_array[i]; in win32_dispatch()
369 if (win32op->writeset_out) in win32_dealloc()
370 mm_free(win32op->writeset_out); in win32_dealloc()