Lines Matching defs:fdsz
108 static int select_resize(struct selectop *sop, int fdsz);
214 select_resize(struct selectop *sop, int fdsz)
222 if ((readset_in = mm_realloc(sop->event_readset_in, fdsz)) == NULL)
225 if ((writeset_in = mm_realloc(sop->event_writeset_in, fdsz)) == NULL) {
238 fdsz - sop->event_fdsz);
240 fdsz - sop->event_fdsz);
242 sop->event_fdsz = fdsz;
266 int fdsz = sop->event_fdsz;
268 if (fdsz < (int)sizeof(fd_mask))
269 fdsz = (int)sizeof(fd_mask);
274 while (fdsz < (int) SELECT_ALLOC_SIZE(fd + 1))
275 fdsz *= 2;
277 if (fdsz != sop->event_fdsz) {
278 if (select_resize(sop, fdsz)) {