Lines Matching refs:tfd_count
88 timerfd_t tfd_count; /* (t) expiration count since read */ member
198 tfd->tfd_count = 0; in timerfd_read()
204 if (tfd->tfd_count == 0) { in timerfd_read()
210 error = mtx_sleep(&tfd->tfd_count, &tfd->tfd_lock, in timerfd_read()
220 count = tfd->tfd_count; in timerfd_read()
221 tfd->tfd_count = 0; in timerfd_read()
258 tfd->tfd_count > 0 && tfd->tfd_jumped != TFD_READ) in timerfd_poll()
283 kn->kn_data = (int64_t)tfd->tfd_count; in filt_timerfdread()
284 return (tfd->tfd_count > 0); in filt_timerfdread()
399 ++tfd->tfd_count; in timerfd_expire()
406 tfd->tfd_count += tstosbt(uptime) / in timerfd_expire()
420 wakeup(&tfd->tfd_count); in timerfd_expire()
560 tfd->tfd_count = 0; in kern_timerfd_settime()