Searched refs:countdown (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/common/docsExamples/
H A DMakefile11 countdown.d \
/freebsd-11-stable/sys/dev/ixgbe/
H A Dixgbe_mbx.c48 int countdown = mbx->timeout; local
52 if (!countdown || !mbx->ops.check_for_msg)
55 while (countdown && mbx->ops.check_for_msg(hw, mbx_id)) {
56 countdown--;
57 if (!countdown)
62 if (countdown == 0)
67 return countdown ? IXGBE_SUCCESS : IXGBE_ERR_MBX;
80 int countdown = mbx->timeout; local
84 if (!countdown || !mbx->ops.check_for_ack)
87 while (countdown
[all...]
/freebsd-11-stable/sys/dev/e1000/
H A De1000_mbx.c184 int countdown = mbx->timeout; local
188 if (!countdown || !mbx->ops.check_for_msg)
191 while (countdown && mbx->ops.check_for_msg(hw, mbx_id)) {
192 countdown--;
193 if (!countdown)
199 if (!countdown)
202 return countdown ? E1000_SUCCESS : -E1000_ERR_MBX;
215 int countdown = mbx->timeout; local
219 if (!countdown || !mbx->ops.check_for_ack)
222 while (countdown
[all...]
/freebsd-11-stable/contrib/ntp/sntp/unity/
H A Dunity_fixture.c148 void UnityMalloc_MakeMallocFailAfterCount(int countdown) argument
150 malloc_fail_countdown = countdown;
/freebsd-11-stable/cddl/usr.sbin/zfsd/
H A Dcase_file.cc590 timeval now, countdown, elapsed, timestamp, zero, remaining; local
595 timersub(&s_removeGracePeriod, &elapsed, &countdown);
597 * If countdown is <= zero, Reset the timer to the
601 if (timercmp(&countdown, &zero, <=)) {
602 timerclear(&countdown);
603 countdown.tv_usec = 1;
609 || timercmp(&countdown, &remaining, <))
610 m_tentativeTimer.Reset(countdown, OnGracePeriodEnded, this);
/freebsd-11-stable/sys/dev/drm/
H A Dr600_cp.c205 u32 resp, countdown = 1000; local
212 countdown--;
214 } while (((resp & 0xf0) == 0) && countdown);

Completed in 78 milliseconds