Home
last modified time | relevance | path

Searched refs:p_time (Results 1 – 15 of 15) sorted by relevance

/illumos-gate/usr/src/uts/common/syscall/
H A Dtimes.c50 struct tms p_time; in times() local
54 p_time.tms_utime = (clock_t)NSEC_TO_TICK( in times()
56 p_time.tms_stime = (clock_t)NSEC_TO_TICK( in times()
58 p_time.tms_cutime = p->p_cutime; in times()
59 p_time.tms_cstime = p->p_cstime; in times()
62 if (copyout(&p_time, tp, sizeof (p_time))) in times()
80 struct tms32 p_time; in times32() local
84 p_time.tms_utime = (clock32_t)NSEC_TO_TICK( in times32()
86 p_time.tms_stime = (clock32_t)NSEC_TO_TICK( in times32()
88 p_time.tms_cutime = (clock32_t)p->p_cutime; in times32()
[all …]
/illumos-gate/usr/src/lib/libadm/common/
H A Dcktime.c152 input = p_time(input, LH, UH); in cktime_val()
158 input = p_time(input, LM, UM); in cktime_val()
164 input = p_time(input, LS, US); in cktime_val()
170 input = p_time(input, LH, UH); in cktime_val()
181 input = p_time(input, LM, UM); in cktime_val()
191 input = p_time(input, LS, US); in cktime_val()
197 input = p_time(input, LH, UH); in cktime_val()
207 input = p_time(input, LM, UM); in cktime_val()
215 input = p_time(input, LH, USH); in cktime_val()
225 input = p_time(input, LM, UM); in cktime_val()
[all …]
/illumos-gate/usr/src/lib/libresolv/
H A Dres_debug.c229 fprintf(file, ", ttl = %s", p_time(_getlong(cp)));
293 fprintf(file, "\n\trefresh = %s", p_time(_getlong(cp)));
295 fprintf(file, "\n\tretry = %s", p_time(_getlong(cp)));
297 fprintf(file, "\n\texpire = %s", p_time(_getlong(cp)));
299 fprintf(file, "\n\tmin = %s\n", p_time(_getlong(cp)));
486 p_time(value) in p_time() function
H A Dresolv.h105 extern char *p_time(unsigned long);
107 extern char *p_cdname(), *p_rr(), *p_type(), *p_class(), *p_time();
H A Dmapfile-vers64 p_time;
/illumos-gate/usr/src/cmd/whodo/
H A Dwhodo.c114 time_t p_time; /* ticks of user & system time */ member
393 up->p_time = 0; in main()
418 up->p_time = statinfo.pr_utime.tv_sec + in main()
588 up->p_time / 60L, up->p_time % 60L, in showproc()
657 jobtime += up->p_time + up->p_ctime; in calctotals()
658 proctime += up->p_time; in calctotals()
/illumos-gate/usr/src/cmd/ttymon/
H A Dttymon.c542 if (pmptr->p_time == 0L) in check_spawnlimit()
543 pmptr->p_time = now; in check_spawnlimit()
545 if ((now - pmptr->p_time) < SPAWN_INTERVAL) { in check_spawnlimit()
546 pmptr->p_time = now; in check_spawnlimit()
550 pmptr->p_time = now; in check_spawnlimit()
H A Dtmstruct.h73 long p_time; /* start time of a series */ member
/illumos-gate/usr/src/cmd/w/
H A Dw.c100 time_t p_time; /* seconds of user & system time */ member
418 up->p_time = in main()
537 jobtime += up->p_time + up->p_ctime; in main()
538 proctime += up->p_time; in main()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/uwin/
H A Drlib.h71 extern char *p_time(u_long value);
/illumos-gate/usr/src/cmd/init/
H A Dinit.c318 long p_time; /* Start time for a series of respawns */ member
1373 if (process->p_time == 0L) in spawn()
1374 process->p_time = now; in spawn()
1378 if ((now - process->p_time) < SPAWN_INTERVAL) { in spawn()
1389 process->p_time = now; in spawn()
1398 if (now - process->p_time < SPAWN_INTERVAL + INHIBIT) in spawn()
1400 process->p_time = now; in spawn()
1499 process->p_time = 0L; in findpslot()
2286 process->p_time = 0L; in siglvl()
2486 process->p_time = 0L; in efork()
[all …]
/illumos-gate/usr/src/head/
H A Dresolv.h364 const char *p_time __P((unsigned int));
/illumos-gate/usr/src/lib/libresolv2/common/resolv/
H A Dres_debug.c142 #pragma weak __p_time = p_time
725 p_time(u_int32_t value) { in p_time() function
/illumos-gate/usr/src/lib/libresolv2/common/
H A Dmapfile-vers348 p_time;
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dxec.c210 static int p_time(Shell_t *shp, Sfio_t *out, const char *format, clock_t *tm) in p_time() function
2668 p_time(shp,sfstderr,sh_translate(format),tm); in sh_exec()