Home
last modified time | relevance | path

Searched refs:mevp (Results 1 – 7 of 7) sorted by relevance

/freebsd/usr.sbin/bhyve/
H A Dmevent.c225 kev->udata = mevp; in mevent_populate()
250 mevp->me_cq = 0; in mevent_build()
254 free(mevp); in mevent_build()
270 struct mevent *mevp; in mevent_handle() local
278 (*mevp->me_func)(mevp->me_fd, mevp->me_type, mevp->me_param); in mevent_handle()
295 mevp = NULL; in mevent_add_state()
322 if (mevp == NULL) { in mevent_add_state()
330 mevp->me_fd = tfd; in mevent_add_state()
344 free(mevp); in mevent_add_state()
345 mevp = NULL; in mevent_add_state()
[all …]
H A Dnet_backend_netmap.c54 struct mevent *mevp; member
148 priv->mevp = mevent_add_disabled(be->fd, EVF_READ, cb, param); in netmap_init()
149 if (priv->mevp == NULL) { in netmap_init()
162 if (priv->mevp) { in netmap_cleanup()
163 mevent_delete(priv->mevp); in netmap_cleanup()
343 mevent_enable(priv->mevp); in netmap_recv_enable()
351 mevent_disable(priv->mevp); in netmap_recv_disable()
H A Dnet_backends.c78 if (priv->mevp) { in tap_cleanup()
79 mevent_delete(priv->mevp); in tap_cleanup()
136 priv->mevp = mevent_add_disabled(be->fd, EVF_READ, cb, param); in tap_init()
137 if (priv->mevp == NULL) { in tap_init()
221 mevent_enable(priv->mevp); in tap_recv_enable()
229 mevent_disable(priv->mevp); in tap_recv_disable()
H A Dnet_backend_slirp.c136 struct mevent *mevp; member
171 if (priv->mevp) in slirp_priv_cleanup()
172 mevent_delete(priv->mevp); in slirp_priv_cleanup()
532 priv->mevp = mevent_add_disabled(be->fd, EVF_READ, cb, param); in _slirp_init()
533 if (priv->mevp == NULL) { in _slirp_init()
626 mevent_enable(priv->mevp); in slirp_recv_enable()
634 mevent_disable(priv->mevp); in slirp_recv_disable()
H A Drtc_pl031.c74 struct mevent *mevp; member
140 mevent_timer_update(sc->mevp, rtc_pl031_next_timer_msecs(sc)); in rtc_pl031_update_timer()
275 sc->mevp = mevent_add(rtc_pl031_next_timer_msecs(sc), EVF_TIMER, in rtc_pl031_init()
H A Dnet_backend_netgraph.c164 p->mevp = mevent_add_disabled(be->fd, EVF_READ, cb, param); in ng_init()
165 if (p->mevp == NULL) { in ng_init()
H A Dnet_backends_priv.h131 struct mevent *mevp; member