Lines Matching defs:countdown
16 int countdown = mbx->timeout;
18 if (!countdown || !mbx->ops.check_for_msg)
21 while (countdown && mbx->ops.check_for_msg(hw)) {
22 countdown--;
26 return countdown ? 0 : IXGBE_ERR_TIMEOUT;
38 int countdown = mbx->timeout;
40 if (!countdown || !mbx->ops.check_for_ack)
43 while (countdown && mbx->ops.check_for_ack(hw)) {
44 countdown--;
48 return countdown ? 0 : IXGBE_ERR_TIMEOUT;
204 int countdown = mbx->timeout;
210 while (countdown--) {