Searched refs:delay (Results 151 - 175 of 251) sorted by relevance

1234567891011

/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/os/
H A Dcallb.c39 #include <sys/systm.h> /* for delay() */
412 delay(CALLB_THREAD_DELAY);
/freebsd-9.3-release/sys/dev/pcf/
H A Dpcf.c424 int delay /* us */)
447 /* XXX delay needed here */
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_trans_ail.c150 delay(300);
/freebsd-9.3-release/sys/ofed/drivers/net/mlx4/
H A Den_main.c35 #include <linux/delay.h>
/freebsd-9.3-release/contrib/ntp/sntp/libevent/test/
H A Dregress_util.c1288 struct timeval tv[10], delay; local
1314 delay.tv_sec = 0;
1315 delay.tv_usec = wantres;
1321 evutil_usleep_(&delay);
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dtxg.c581 * Delay this thread by delay nanoseconds if we are still in the open
583 * Abort the delay if this txg stalls or enters the quiesing state.
586 txg_delay(dsl_pool_t *dp, uint64_t txg, hrtime_t delay, hrtime_t resolution) argument
591 /* don't delay if this txg could transition to quiescing immediately */
602 while (gethrtime() - start < delay &&
605 &tx->tx_sync_lock, delay, resolution, 0);
/freebsd-9.3-release/sys/dev/ath/ath_hal/ar5210/
H A Dar5210_reset.c47 * The delay, in usecs, between writing AR_RC with a reset
57 uint32_t resetMask, u_int delay);
582 ar5210SetResetReg(struct ath_hal *ah, uint32_t resetMask, u_int delay) argument
589 OS_DELAY(delay);
/freebsd-9.3-release/sys/dev/cxgb/common/
H A Dcxgb_common.h674 int attempts, int delay, u32 *valp);
677 int polarity, int attempts, int delay)
680 delay, NULL);
676 t3_wait_op_done(adapter_t *adapter, int reg, u32 mask, int polarity, int attempts, int delay) argument
/freebsd-9.3-release/sys/dev/cxgbe/common/
H A Dcommon.h391 int attempts, int delay, u32 *valp);
394 int polarity, int attempts, int delay)
397 delay, NULL);
393 t4_wait_op_done(struct adapter *adapter, int reg, u32 mask, int polarity, int attempts, int delay) argument
/freebsd-9.3-release/contrib/ntp/parseutil/
H A Ddcfd.c1240 fprintf(stderr, "usage: %s [-n] [-f] [-l] [-t] [-i] [-o] [-d <drift_file>] [-D <input delay>] <device>\n", program);
1249 fprintf(stderr, "\t-D <input delay>specify delay from input edge to processing in micro seconds\n");
1394 int delay = DEFAULT_DELAY; /* average delay from input edge to time stamping */ local
1440 delay = atoi(*++a);
1535 phase.tv_usec = delay;
/freebsd-9.3-release/sys/cam/scsi/
H A Dscsi_all.c89 * All devices need _some_ sort of bus settle delay, so we'll set it to
91 * not transport like Fibre Channel or iSCSI where 'delay' is completely
115 static int set_scsi_delay(int delay);
6556 int delay; local
6558 delay = SCSI_DELAY;
6559 TUNABLE_INT_FETCH("kern.cam.scsi_delay", &delay);
6561 if (set_scsi_delay(delay) != 0) {
6571 int error, delay; local
6573 delay = scsi_delay;
6574 error = sysctl_handle_int(oidp, &delay,
6584 set_scsi_delay(int delay) argument
[all...]
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Dntp_proto.c68 #define RESP_DELAY 1 /* refclock burst delay (s) */
94 double sys_rootdelay; /* roundtrip delay to primary source */
119 double sys_bdelay; /* broadcast client default delay */
121 l_fp sys_authdelay; /* authentication delay */
1287 peer->delay = sys_bdelay;
1295 * propagation delay and run the Autokey protocol.
2218 * Compute the headway for the next packet and delay if
2247 * roundtrip delay and dispersion. The equations are reordered
2250 * computed delay during the client/server volley. Note the
2259 * arithmetic. However, the offset and delay calculation
[all...]
/freebsd-9.3-release/sys/netpfil/ipfw/
H A Dip_dummynet.c441 * Allocate memory for instance, delay line and scheduler private data.
484 * si and delay line from the system heap, destroy all queues.
495 if (dl->oid.subtype) /* remove delay line from event heap */
497 dn_free_pkts(dl->mq.head); /* drain delay line */
812 l->delay = l->delay * 1000 / hz;
1224 * delay = ms, must be translated into ticks.
1228 p->delay = (p->delay * hz) / 1000;
1249 s->link.delay
[all...]
/freebsd-9.3-release/sys/dev/pccbb/
H A Dpccbb.c803 * only a short delay is better than the alternatives. Others
825 * act together, so delay for an additional 100ms. Also as
837 * However, the PC Card standard says that we must delay turning the
962 int delay, count; local
969 delay = sc->chipset == CB_RF5C47X ? 400 : 20;
971 pause("cbbP3", hz * delay / 1000);
/freebsd-9.3-release/sys/netinet6/
H A Dnd6_nbr.c618 * - proxy advertisement delay rule (RFC2461 7.2.8, last paragraph, SHOULD)
619 * - anycast advertisement delay rule (RFC2461 7.2.7, SHOULD)
955 * - proxy advertisement delay rule (RFC2461 7.2.8, last paragraph, SHOULD)
956 * - anycast advertisement delay rule (RFC2461 7.2.7, SHOULD)
1222 nd6_dad_start(struct ifaddr *ifa, int delay) argument
1287 * Note that we must delay the first transmission, if this is the
1296 if (delay == 0) {
1301 nd6_dad_starttimer(dp, delay);
/freebsd-9.3-release/usr.sbin/ppp/
H A Dphysical.c212 p->cfg.cd.delay = 0; /* reconfigured or device specific default */
511 prompt_Printf(arg->prompt, " CD check delay: ");
518 prompt_Printf(arg->prompt, "%d second%s", p->cfg.cd.delay,
519 p->cfg.cd.delay == 1 ? "" : "s");
/freebsd-9.3-release/contrib/ntp/util/
H A Dtg2.c499 void delay(int); /* delay samples */
1084 delay(SECOND - TimeValue.tv_usec * 8 / 1000);
2375 void delay ( function
2376 int Delay /* delay in samples */
/freebsd-9.3-release/sys/boot/i386/libfirewire/
H A Dfwohci.c57 #define DELAY(x) delay(x)
/freebsd-9.3-release/sys/boot/pc98/libpc98/
H A Dvidconsole.c180 delay(40000);
/freebsd-9.3-release/sys/dev/drm/
H A Dradeon_drm.h265 } delay; member in union:__anon7580
/freebsd-9.3-release/sys/geom/virstor/
H A Dg_virstor.c881 LOG_MSG(LVL_DEBUG, "Consumer %s destroyed with delay",
894 boolean_t delay)
916 if (delay) {
931 boolean_t delay)
952 remove_component(sc, &sc->components[n], delay);
1675 * delay it to when we can...
893 remove_component(struct g_virstor_softc *sc, struct g_virstor_component *comp, boolean_t delay) argument
930 virstor_geom_destroy(struct g_virstor_softc *sc, boolean_t force, boolean_t delay) argument
/freebsd-9.3-release/usr.sbin/lpr/common_source/
H A Dcommon.c269 delay(int millisec) function
275 "unreasonable delay period (%d)", millisec);
/freebsd-9.3-release/usr.sbin/rtadvd/
H A Drtadvd.c711 * Will notice the change in a short delay.
1008 long delay; /* must not be greater than 1000000 */ local
1014 * Compute a random delay. If the computed value
1017 * delay and send the advertisement at the
1021 delay = arc4random_uniform(MAX_RA_DELAY_TIME);
1023 delay = random() % MAX_RA_DELAY_TIME;
1026 interval.tv_usec = delay;
1029 syslog(LOG_DEBUG, "<%s> random delay is larger than "
/freebsd-9.3-release/usr.sbin/ntp/ntpdc/
H A Dnl.c108 printf("offsetof(delay) = %d\n",
109 (int) offsetof(struct info_peer_summary, delay));
190 printf("offsetof(delay) = %d\n",
191 (int) offsetof(struct info_peer, delay));
/freebsd-9.3-release/sys/kern/
H A Dvfs_subr.c196 * It is useful to delay writes of file data and filesystem metadata
212 * A delay of fifteen seconds is done by placing the request fifteen
236 static int syncer_maxdelay = SYNCER_MAXDELAY; /* maximum delay time */
237 static int syncdelay = 30; /* max time to delay syncing data */
238 static int filedelay = 30; /* time to delay syncing files */
240 "Time to delay syncing files (in seconds)");
241 static int dirdelay = 29; /* time to delay syncing directories */
243 "Time to delay syncing directories (in seconds)");
244 static int metadelay = 28; /* time to delay syncing metadata */
246 "Time to delay syncin
1750 vn_syncer_add_to_worklist(struct bufobj *bo, int delay) argument
2048 int delay; local
[all...]

Completed in 424 milliseconds

1234567891011