Home | History | Annotate | Download | only in libevent

Lines Matching refs:changes

72 	struct kevent *changes;
124 kqueueop->changes = malloc(NEVENT * sizeof(struct kevent));
125 if (kqueueop->changes == NULL) {
131 free (kqueueop->changes);
143 kqueueop->changes[0].ident = -1;
144 kqueueop->changes[0].filter = EVFILT_READ;
145 kqueueop->changes[0].flags = EV_ADD;
152 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 ||
156 free(kqueueop->changes);
177 newchange = realloc(kqop->changes,
183 kqop->changes = newchange;
201 memcpy(&kqop->changes[kqop->nchanges++], kev, sizeof(struct kevent));
221 struct kevent *changes = kqop->changes;
232 res = kevent(kqop->kq, changes, kqop->nchanges,
442 if (kqop->changes)
443 free(kqop->changes);