Home
last modified time | relevance | path

Searched refs:tspec (Results 1 – 6 of 6) sorted by relevance

/titanic_44/usr/src/lib/libsip/common/
H A Dsip_timeout.c181 struct timespec tspec; in sip_timeout() local
190 if (clock_gettime(CLOCK_REALTIME, &tspec) != 0) in sip_timeout()
192 now = (hrtime_t)tspec.tv_sec * (hrtime_t)NANOSEC + tspec.tv_nsec; in sip_timeout()
247 struct timespec tspec; in sip_schedule_to_functions() local
254 if (clock_gettime(CLOCK_REALTIME, &tspec) != 0) in sip_schedule_to_functions()
256 current_time = (hrtime_t)tspec.tv_sec * (hrtime_t)NANOSEC + in sip_schedule_to_functions()
257 tspec.tv_nsec; in sip_schedule_to_functions()
312 struct timespec tspec; in sip_timer_thr() local
334 if (clock_gettime(CLOCK_REALTIME, &tspec) != 0) in sip_timer_thr()
336 current_time = (hrtime_t)tspec.tv_sec * (hrtime_t)NANOSEC + in sip_timer_thr()
[all …]
H A Dsip_gids.c143 struct timespec tspec; in sip_guid() local
155 if (clock_gettime(CLOCK_REALTIME, &tspec) != 0) in sip_guid()
157 time = (uint32_t)tspec.tv_nsec; in sip_guid()
H A Dsip_itf.c588 struct timespec tspec; in sip_stack_init() local
682 if (clock_gettime(CLOCK_REALTIME, &tspec) != 0) in sip_stack_init()
684 sip_hash_salt = tspec.tv_nsec; in sip_stack_init()
/titanic_44/usr/src/cmd/vgrind/
H A Dvgrind.ksh42 tspec=0
107 tspec=1
143 if [ $filter -eq 1 -a $tspec -eq 1 ] ; then
148 if [ $tspec -eq 1 -a \( $twospec -eq 1 -o $pspec -eq 1 \) ] ; then
/titanic_44/usr/src/cmd/newform/
H A Dnewform.c324 int tspec = 0; /* Tab spec pointer */ in cnvtspec() local
545 tspec = sitabspec; in cnvtspec()
549 tspec = readspec(siline); in cnvtspec()
550 sitabspec = tspec; in cnvtspec()
562 tspec = readspec(work); in cnvtspec()
565 return (tspec); in cnvtspec()
/titanic_44/usr/src/cmd/fm/modules/common/disk-monitor/
H A Dhotplug_mgr.c72 struct timespec tspec; in nsleep() local
74 tspec.tv_sec = seconds; in nsleep()
75 tspec.tv_nsec = 0; in nsleep()
77 return (nanosleep(&tspec, NULL)); in nsleep()