HomeSort by relevance Sort by last modified time
    Searched defs:interval (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /onnv/onnv-gate/usr/src/lib/libnisdb/
nis_ldap.c 142 int interval; local
144 interval = t->initTtlHi - t->initTtlLo + 1;
146 if (interval > 1) {
148 ttl = (lrand48() % interval);
  /onnv/onnv-gate/usr/src/cmd/print/bsd-sysv-commands/
lpq.c 80 int interval = 0; local
103 interval = atoi(av[optind++]);
121 if (interval != 0)
127 if ((interval != 0) && (num_jobs > 0))
128 sleep(interval);
129 } while ((interval > 0) && (num_jobs > 0));
  /onnv/onnv-gate/usr/src/uts/common/io/ib/mgt/ibmf/
ibmf_timers.c 39 * Set the timer to the response or transaction time interval
45 clock_t interval; local
59 * The response timer interval is the sum of the IBA
67 interval = msgimplp->im_retrans.retrans_rtv +
71 IBMF_TNF_TRACE, "", "ibmf_i_set_timer: %s, interval = %ld "
74 tnf_long, interval, interval,
76 tnf_uint, interval, msgimplp->im_retrans.retrans_rttv);
79 (void *)msgimplp, drv_usectohz(interval));
89 interval = IBMF_RETRANS_DEF_TRANS_TO
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dispadmin/
subr.c 62 * hrtconvert() returns the interval specified by htp as a single
90 * Convert interval expressed in htp->hrt_res to new_res.
92 * Calculate: (interval * new_res) / htp->hrt_res rounding off as
103 long interval; local
125 interval = htp->hrt_rem;
126 if (interval == 0) {
136 * (interval * new_res) / hrt->hrt_res
139 numerator = interval * new_res;
141 if (numerator / new_res == interval) {
154 * (interval * new_res) % htp->hrt_re
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/ral/
ral_rate.c 118 long interval; local
128 interval = MAX(100000, 10000000 / MAX(1, 10 * ra->ra_pktrate));
129 ra->ra_raise_interval.tv_sec = interval / (1000 * 1000);
130 ra->ra_raise_interval.tv_usec = interval % (1000 * 1000);
  /onnv/onnv-gate/usr/src/cmd/ndmpstat/
ndmpstat_main.c 86 long interval; local
90 interval = strtol(argv[0], &endptr, 10);
92 if (errno > 0 || *endptr != '\0' || interval <= 0 ||
93 interval > MAXLONG) {
97 poll_interval = 1000 * interval;
236 (void) fprintf(stderr, "Usage: ndmpstat [interval [count]]\n");
  /onnv/onnv-gate/usr/src/cmd/wbem/provider/com/sun/wbem/solarisprovider/srm/
rmon.java 49 int loopCnt = 1, interval = 1000; local
98 interval = Integer.parseInt(args[++argix]);
  /onnv/onnv-gate/usr/src/lib/libdtrace/common/
dt_work.c 61 dtrace_optval_t interval = dtp->dt_options[opt]; local
72 if (*((hrtime_t *)a) + interval < earliest)
73 earliest = *((hrtime_t *)a) + interval;
116 dtrace_optval_t interval = dtp->dt_options[DTRACEOPT_STATUSRATE]; local
126 if (now - dtp->dt_laststatus < interval)
129 dtp->dt_laststatus += interval;
  /onnv/onnv-gate/usr/src/uts/common/os/
clock_realtime.c 76 timespec_t *val, *interval; local
86 interval = &it->it_itime.it_interval;
90 if (!timerspecisset(interval)) {
95 * If this is an interval timer, we need to determine a time
97 * clock has been adjusted, we want to find our new interval
99 * current time and add the interval; it would lead to
105 * size back to the original interval, and repeat until we
111 interval2nth = *interval;
115 * If we don't do this, and the interval is shorter
clock_highres.c 131 * that the start time plus the interval time doesn't exceed
141 * (where "s" is the start time, "i" is the interval, "n" is the
165 * If this is a one-shot, then we set the interval to assure
216 hrtime_t interval = ts2hrt(&it->it_itime.it_interval); local
238 if (interval == 0) {
248 * Calculate how far we are into this interval.
250 diff = (now - start) % interval;
253 * Now check to see if we've dealt with the last interval
258 * The last interval hasn't fired; set it_value to 0.
265 * The last interval _has_ fired; we can return the amoun
    [all...]
  /onnv/onnv-gate/usr/src/cmd/auditstat/
auditstat.c 59 static int interval; variable
113 (void) sleep(interval);
215 "auditstat: invalid interval specified.\n");
218 interval = atoi(optarg);
256 "[-T d|u] [-i interval] [-n] [-v]\n");
  /onnv/onnv-gate/usr/src/cmd/avs/dsstat/
dsstat.c 41 int interval = 1; variable
63 "[-r <flags>] \\\n[-d <flags>] [<interval> [<count>]]\n\n"));
138 "<interval> is the number of seconds between reports\n\n"));
388 if ((interval = atoi(argv[optind])) <= 0) {
390 gettext("Invalid interval specified.\n"));
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/
ruptime.c 64 static char *interval();
196 interval((int)(now - hsp->hs_wd->wd_recvtime),
203 interval(hsp->hs_wd->wd_sendtime -
220 interval(int time, char *updown) function
  /onnv/onnv-gate/usr/src/uts/common/brand/lx/syscall/
lx_sched.c 436 struct timespec interval; local
468 interval.tv_sec = ((rtparms_t *)pcparm.pc_clparms)->rt_tqsecs;
469 interval.tv_nsec = ((rtparms_t *)pcparm.pc_clparms)->rt_tqnsecs;
471 if (copyout(&interval, ival, sizeof (interval)))
  /onnv/onnv-gate/usr/src/uts/sun4u/opl/io/pcicmu/
pcmu_cb.c 143 hrtime_t prev, curr, interval, jump; local
167 interval = curr - prev;
168 if (interval > jump)
169 intr_timeout += interval;
pcmu_ib.c 155 hrtime_t prev, curr, interval, jump; local
182 interval = curr - prev;
183 if (interval > jump)
184 intr_timeout += interval;
242 hrtime_t prev, curr, interval, jump; local
268 interval = curr - prev;
269 if (interval > jump)
270 intr_timeout += interval;
503 hrtime_t prev, curr, interval, jump; local
536 interval = curr - prev
593 hrtime_t prev, curr, interval, jump; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/
ddi_timer.h 95 hrtime_t interval; /* interval this request needs */ member in struct:tm_req
  /onnv/onnv-gate/usr/src/cmd/hal/addons/network-devices/
addon-network-discovery.c 95 nds_EnablePrinterScanningViaSNMP(LibHalContext *ctx, char *parent, int interval,
99 ctx, NP(parent), interval, NP(community), NP(network)));
118 g_timeout_add(interval * 1000, nds_snmp_scan_cb, snmp_cb_data);
165 int interval = -1; local
171 DBUS_TYPE_INT32, &interval,
179 rc = nds_EnablePrinterScanningViaSNMP(ctx, udi, interval,
183 int interval = -1; local
232 " <arg name=\"interval\" direction=\"in\" type=\"i\"/>\n"
  /onnv/onnv-gate/usr/src/cmd/powertop/common/
powertop.c 98 double interval, interval_usr; local
126 interval = interval_usr = INTERVAL_DEFAULT;
162 interval = interval_usr = (double)strtod(optarg,
165 if (*endptr != NULL || interval < 1 ||
166 interval > INTERVAL_MAX) {
220 (float)interval);
287 (int)(interval * MILLISEC)) > 0)
290 (void) sleep((int)interval);
357 interval = 3;
390 * Update the interval based on how long the CPU was in th
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/pppstats/
pppstats.c 101 static int interval, count; variable
140 * Called if an interval expires before intpr has completed a loop.
312 #define KBPS(n) ((n) / (interval * 1000.0))
316 * Repeat display every interval seconds, showing statistics
317 * collected over that interval. Assumes that interval is non-zero.
340 (void)alarm(interval);
469 (void)alarm(interval);
518 interval = atoi(optarg);
519 if (interval <= 0
    [all...]
  /onnv/onnv-gate/usr/src/cmd/format/
ix_altsctr.c 755 int interval; local
764 for (interval = ind; interval; ) {
769 interval >>= 1;
770 if (!interval) break;
772 ind = ind - interval;
776 if ((ind+interval) <= cnt)
777 ind += interval;
  /onnv/onnv-gate/usr/src/cmd/priocntl/
subr.c 562 * Convert interval expressed in htp->hrt_res to new_res.
564 * Calculate: (interval * new_res) / htp->hrt_res rounding off as
578 register long interval; local
599 interval = htp->hrt_rem;
600 if (interval == 0) {
610 * (interval * new_res) / hrt->hrt_res
613 numerator = interval * new_res;
615 if (numerator / new_res == interval) {
628 * (interval * new_res) % htp->hrt_res
686 * Compute the interval times the resolution we ar
    [all...]
  /onnv/onnv-gate/usr/src/cmd/rcm_daemon/common/
rcm_event.c 126 timespec_t *interval = NULL; local
150 (uchar_t **)&interval, &interval_size);
206 (interval == NULL))
209 interval, &info);
  /onnv/onnv-gate/usr/src/uts/intel/sys/
hrtcntl.h 52 HRT_GETIT, /* Return the interval time elapsed */
57 /* event after the time interval has */
60 /* every time interval. */
74 /* interval. */
102 typedef struct interval { struct
110 * or interval.
127 hrtimes_t hrtc_int; /* A time interval. */
  /onnv/onnv-gate/usr/src/cmd/rcap/rcapstat/
rcapstat.c 124 "[interval [count]]\n"));
255 * Print each collection's interval statistics.
315 * interval otherwise.
357 int interval = 5; local
405 if ((interval = xatoi(argv[optind++])) <= 0)
406 die(gettext("invalid interval specified\n"));
424 (void) sleep(interval);

Completed in 6059 milliseconds

1 2 3 4