Lines Matching refs:this

230 		new->u.accept.this = HEAD(ctx->accepts);  in evGetNext()
240 new->u.stream.this = ctx->strDone; in evGetNext()
252 new->u.wait.this = ctx->waitDone.first; in evGetNext()
392 new->u.timer.this = nextTimer; in evGetNext()
453 new->u.file.this = fid; in evGetNext()
489 evAccept *this = ev->u.accept.this; in evDispatch() local
493 this->conn->fd, this->fd, in evDispatch()
494 this->conn->func, this->conn->uap); in evDispatch()
495 errno = this->ioErrno; in evDispatch()
496 (this->conn->func)(opaqueCtx, this->conn->uap, this->fd, in evDispatch()
497 &this->la, this->lalen, in evDispatch()
498 &this->ra, this->ralen); in evDispatch()
500 func = this->conn->func; in evDispatch()
505 evFile *this = ev->u.file.this; in evDispatch() local
510 this->fd, this->eventmask, this->func, this->uap); in evDispatch()
511 (this->func)(opaqueCtx, this->uap, this->fd, eventmask); in evDispatch()
513 func = this->func; in evDispatch()
518 evStream *this = ev->u.stream.this; in evDispatch() local
522 this->fd, this->func, this->uap); in evDispatch()
523 errno = this->ioErrno; in evDispatch()
524 (this->func)(opaqueCtx, this->uap, this->fd, this->ioDone); in evDispatch()
526 func = this->func; in evDispatch()
531 evTimer *this = ev->u.timer.this; in evDispatch() local
534 this->func, this->uap); in evDispatch()
535 (this->func)(opaqueCtx, this->uap, this->due, this->inter); in evDispatch()
537 func = this->func; in evDispatch()
542 evWait *this = ev->u.wait.this; in evDispatch() local
546 this->tag, this->func, this->uap); in evDispatch()
547 (this->func)(opaqueCtx, this->uap, this->tag); in evDispatch()
549 func = this->func; in evDispatch()
592 FREE(ev->u.accept.this); in evDrop()
602 id.opaque = ev->u.stream.this; in evDrop()
607 evTimer *this = ev->u.timer.this; in evDrop() local
611 if (heap_element(ctx->timers, this->index) != this) { in evDrop()
619 if (this->inter.tv_sec == (time_t)0 && in evDrop()
620 this->inter.tv_nsec == 0L) { in evDrop()
621 opaque.opaque = this; in evDrop()
624 opaque.opaque = this; in evDrop()
625 (void) evResetTimer(opaqueCtx, opaque, this->func, in evDrop()
626 this->uap, in evDrop()
627 evAddTime((this->mode & EV_TMR_RATE) ? in evDrop()
628 this->due : in evDrop()
630 this->inter), in evDrop()
631 this->inter); in evDrop()
636 FREE(ev->u.wait.this); in evDrop()