Lines Matching refs:this
236 new->u.accept.this = HEAD(ctx->accepts); in evGetNext()
246 new->u.stream.this = ctx->strDone; in evGetNext()
258 new->u.wait.this = ctx->waitDone.first; in evGetNext()
398 new->u.timer.this = nextTimer; in evGetNext()
459 new->u.file.this = fid; in evGetNext()
495 evAccept *this = ev->u.accept.this; in evDispatch() local
499 this->conn->fd, this->fd, in evDispatch()
500 this->conn->func, this->conn->uap); in evDispatch()
501 errno = this->ioErrno; in evDispatch()
502 (this->conn->func)(opaqueCtx, this->conn->uap, this->fd, in evDispatch()
503 &this->la, this->lalen, in evDispatch()
504 &this->ra, this->ralen); in evDispatch()
506 func = this->conn->func; in evDispatch()
511 evFile *this = ev->u.file.this; in evDispatch() local
516 this->fd, this->eventmask, this->func, this->uap); in evDispatch()
517 (this->func)(opaqueCtx, this->uap, this->fd, eventmask); in evDispatch()
519 func = this->func; in evDispatch()
524 evStream *this = ev->u.stream.this; in evDispatch() local
528 this->fd, this->func, this->uap); in evDispatch()
529 errno = this->ioErrno; in evDispatch()
530 (this->func)(opaqueCtx, this->uap, this->fd, this->ioDone); in evDispatch()
532 func = this->func; in evDispatch()
537 evTimer *this = ev->u.timer.this; in evDispatch() local
540 this->func, this->uap); in evDispatch()
541 (this->func)(opaqueCtx, this->uap, this->due, this->inter); in evDispatch()
543 func = this->func; in evDispatch()
548 evWait *this = ev->u.wait.this; in evDispatch() local
552 this->tag, this->func, this->uap); in evDispatch()
553 (this->func)(opaqueCtx, this->uap, this->tag); in evDispatch()
555 func = this->func; in evDispatch()
598 FREE(ev->u.accept.this); in evDrop()
608 id.opaque = ev->u.stream.this; in evDrop()
613 evTimer *this = ev->u.timer.this; in evDrop() local
617 if (heap_element(ctx->timers, this->index) != this) { in evDrop()
625 if (this->inter.tv_sec == (time_t)0 && in evDrop()
626 this->inter.tv_nsec == 0L) { in evDrop()
627 opaque.opaque = this; in evDrop()
630 opaque.opaque = this; in evDrop()
631 (void) evResetTimer(opaqueCtx, opaque, this->func, in evDrop()
632 this->uap, in evDrop()
633 evAddTime((this->mode & EV_TMR_RATE) ? in evDrop()
634 this->due : in evDrop()
636 this->inter), in evDrop()
637 this->inter); in evDrop()
642 FREE(ev->u.wait.this); in evDrop()