HomeSort by relevance Sort by last modified time
    Searched defs:tim (Results 1 - 21 of 21) sorted by null

  /onnv/onnv-gate/usr/src/uts/common/syscall/
lwp_timer.c 181 clock_t tim = -1; local
188 tim = untimeout_default(tmp_id, 0);
192 return (tim);
lwp_sobj.c 1153 clock_t tim = -1; local
1588 clock_t tim = -1; local
2032 clock_t tim = -1; local
2359 clock_t tim = -1; local
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/bn/
bn_rand.c 14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
107 * (eay@cryptsoft.com). This product includes software written by Tim
122 time_t tim; local
142 time(&tim);
143 RAND_add(&tim,sizeof(tim),0.0);
  /onnv/onnv-gate/usr/src/cmd/sgs/link_audit/common/
perfcnt.c 261 (void) printf("%20s\tc_count\t tim\t\tavg. tim\ttot. %%\n",
267 float tim = dep->d_time * 1000000; local
270 dep->d_symname, dep->d_count, tim, tim / dep->d_count,
  /onnv/onnv-gate/usr/src/lib/libsip/common/
sip_timeout.c 310 struct timeval tim; local
317 (void) gettimeofday(&tim, NULL);
318 to.tv_sec = tim.tv_sec + (delta / NANOSEC);
319 to.tv_nsec = (hrtime_t)(tim.tv_usec * MILLISEC) +
  /onnv/onnv-gate/usr/src/cmd/avs/sdbc/
sd_stats.c 457 time_t tim; local
467 tim = time((time_t *)0);
468 (void) mvprintw(0, 79 - 10, "%-8.8s\n", &(ctime(&tim)[11]));
  /onnv/onnv-gate/usr/src/lib/libldap4/common/
os-ip.c 464 int tim; local
476 tim = (timeout->tv_sec*1000)+(timeout->tv_usec/1000);
478 tim = INFTIM;
484 rv = poll(sip->fds,sip->nbfds,tim);
489 return( poll(sip->fds,sip->nbfds,tim) );
  /onnv/onnv-gate/usr/src/uts/common/os/
turnstile.c 612 clock_t tim = -1; local
634 tim = lwp_timer_dequeue(lwptp);
639 else if (imm_timeout || (timedwait && tim == -1))
condvar.c 218 * Same as cv_wait except the thread will unblock at 'tim'
221 * Returns the amount of time left from the original 'tim' value
225 cv_timedwait(kcondvar_t *cvp, kmutex_t *mp, clock_t tim)
230 if (tim <= now)
233 hrtim = TICK_TO_NSEC(tim - now);
259 cv_timedwait_hires(kcondvar_t *cvp, kmutex_t *mp, hrtime_t tim,
273 if (tim <= limit)
277 tim, res, flag);
362 cv_timedwait_sig_hires(kcondvar_t *cvp, kmutex_t *mp, hrtime_t tim,
384 return (cv_timedwait_hires(cvp, mp, tim, res, flag))
642 clock_t tim; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsmbfs/smb/
ntlm.c 409 struct mbuf *tim = ti_mbp->mb_top; local
467 (uchar_t *)tim->m_data, tim->m_len);
470 mb_put_mem(nt_mbp, tim->m_data, tim->m_len);
  /onnv/onnv-gate/usr/src/cmd/fs.d/pcfs/fsck/
dir.c 832 ushort_t tim, dat; local
846 tim = tm.tm_hour << HOURSHIFT;
847 tim |= tm.tm_min << MINSHIFT;
848 tim |= (tm.tm_sec / 2) << SECSHIFT;
855 dat = tim = 0;
858 pctp->pct_time = LE_16(tim);
  /onnv/onnv-gate/usr/src/cmd/wbem/provider/com/sun/wbem/solarisprovider/srm/
SRMDebug.java 478 Time tim = new Time(System.currentTimeMillis()); local
479 trace_msg = tim.toString() + " | ";
  /onnv/onnv-gate/usr/src/ucbcmd/shutdown/
shutdown.c 472 time_t t, t1, tim; local
496 tim = time((time_t *)NULL) + t;
497 return (tim);
506 tim = t*60;
512 tim += t;
513 tim *= 60;
517 if (tim < t || tim >= (24*3600)) {
522 return (t1 + tim - t);
  /onnv/onnv-gate/usr/src/cmd/w/
w.c 502 time_t tim = ut->ut_xtime; local
503 prtat(&tim);
655 prttime(time_t tim, char *tail)
657 if (tim >= 60) {
659 (int)tim/60, (int)tim%60));
660 } else if (tim > 0) {
661 PRINTF((dcgettext(NULL, " %2d", LC_TIME), (int)tim));
  /onnv/onnv-gate/usr/src/cmd/whodo/
whodo.c 468 time_t tim; local
482 tim = ut->ut_xtime;
483 (void) prtat(&tim);
494 tim = ut->ut_xtime;
495 tm = localtime(&tim);
745 prttime(time_t tim, char *tail)
747 if (tim >= 60)
749 (int)tim/60, (int)tim%60);
750 else if (tim > 0
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ps/
ucbps.c 1038 static time_t tim = 0L; local
1041 if (tim == 0L)
1042 tim = time((time_t *)0);
1044 if (tim - starttime > 24*60*60) {
  /onnv/onnv-gate/usr/src/uts/common/inet/
mi.c 1077 * If "tim" is -2 the timer is moved to a different queue.
1078 * If "tim" is -1 the timer is stopped.
1080 * set to fire tim milliseconds from now.
1084 mi_timer(queue_t *q, MBLKP mp, clock_t tim)
1089 ASSERT(tim >= -2);
1094 if (tim >= 0) {
1097 tim = MSEC_TO_TICK(tim);
1104 mtb->mtb_time_left = tim;
1114 mtb->mtb_time_left = tim;
1228 clock_t tim; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/net80211/
net80211_impl.h 310 uint8_t *tim; member in struct:ieee80211_scanparams
  /onnv/onnv-gate/usr/src/cmd/syslogd/
syslogd.c 4957 time_t tim; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/wpi/
wpireg.h 465 uint16_t tim; member in struct:wpi_cmd_beacon
  /onnv/onnv-gate/usr/src/cmd/cron/
cron.c 756 time_t tim; local
784 if (((tim = num(&ptr)) == 0) || (*ptr != '.'))
794 init_atevent(dp->d_name, tim, jobtype, first);
874 init_atevent(char *name, time_t tim, int jobtype, int first)
880 add_atevent(u, name, tim, jobtype);
884 add_atevent(u, name, tim, jobtype);
886 update_atevent(u, name, tim, jobtype);
990 time_t tim; local
999 if (((tim = num(&ptr)) == 0) || (*ptr != '.'))
1053 add_atevent(u, name, tim, jobtype)
    [all...]

Completed in 660 milliseconds