Searched refs:time (Results 1 - 25 of 1808) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dgetkey.c29 #include "time.h"
40 srand48 (time((time_t *)0));
/illumos-gate/usr/src/lib/libresolv2/common/nameser/
H A Dns_date.c32 #include <time.h>
56 struct tm time; local
68 memset(&time, 0, sizeof time);
69 time.tm_year = datepart(cp + 0, 4, 1990, 9999, errp) - 1900;
70 time.tm_mon = datepart(cp + 4, 2, 01, 12, errp) - 1;
71 time.tm_mday = datepart(cp + 6, 2, 01, 31, errp);
72 time.tm_hour = datepart(cp + 8, 2, 00, 23, errp);
73 time.tm_min = datepart(cp + 10, 2, 00, 59, errp);
74 time
[all...]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.clearavg2.d49 @time = avg(0);
55 printa(" %@d\n", @time);
56 clear(@time);
/illumos-gate/usr/src/lib/libc/port/sys/
H A Dtime.c29 #pragma weak _time = time
34 #include <time.h>
37 time(time_t *tloc) function
/illumos-gate/usr/src/cmd/make/lib/vroot/
H A Dutimes.cc28 #include <sys/time.h>
37 vroot_result= utimes(path, vroot_args.utimes.time);
41 int utimes_vroot(char *path, struct timeval *time, pathpt vroot_path, pathpt vroot_vroot) argument
43 vroot_args.utimes.time= time;
/illumos-gate/usr/src/boot/sys/boot/usb/
H A Dbsd_usbloader_test.c30 #include <time.h>
74 uint32_t time; local
78 time = 0;
86 if (++time >= (1000 / hz)) {
87 time = 0;
/illumos-gate/usr/src/uts/common/syscall/
H A Dtime.c40 #include <sys/time.h>
51 stime(time_t time) argument
58 if (time < 0)
61 ts.tv_sec = time;
73 stime32(time32_t time) argument
75 if (time < 0)
78 return (stime((time_t)time));
/illumos-gate/usr/src/lib/libbc/libc/compat/4.1/
H A Dftime.c30 #include <sys/time.h>
42 time_t time; member in struct:timeb
58 tp->time = t.tv_sec;
/illumos-gate/usr/src/lib/libresolv2/include/isc/
H A Dplatform.h35 #include <time.h> /* For time_t */
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dctime.c28 #include <time.h>
H A Dtime.c26 * Backwards compatible time call.
29 #include <sys/time.h>
32 time(t) function
/illumos-gate/usr/src/lib/libc/common/sys/
H A D__time.s32 * See time.c
38 SYSTRAP_RVAL1(time)
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dtime_data.c33 #include <time.h>
H A Dtimespec_get.c21 #include <time.h>
H A Dgetdate_err.c33 #include <time.h>
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_stdlib.h33 #include <time.h>
/illumos-gate/usr/src/cmd/dtrace/demo/io/
H A Diocpu.d38 @time["<on cpu>"] = sum(vtimestamp - self->on);
52 @time["<I/O wait>"] = sum(timestamp - self->wait);
59 normalize(@time, 1000000);
60 printa(" %-50s %15@d\n", @time);
/illumos-gate/usr/src/cmd/tnf/tnfdump/
H A Dstate.h31 #include <sys/time.h>
40 * time: timestamp of record
44 hrtime_t time; member in struct:entry
/illumos-gate/usr/src/boot/sys/boot/uboot/lib/
H A Dtime.c36 * Return the time in seconds since the beginning of the day.
39 time(time_t *tloc) function
54 return (time(NULL));
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/
H A Drdate.c45 * sets time, obtaining value from host
46 * on the tcp/time socket.
51 #include <sys/time.h>
61 * The timeserver returns with time of day in seconds since
62 * Jan 1, 1900. We must subtract 86400(365*70 + 17) to get time
69 * Before setting the system time, the value returned by the
71 * is before the time this program was written it cannot be
84 uint32_t time; local
103 * getaddrinfo() may take a long time, because it can involve
116 rc = getaddrinfo(argv[1], "time",
[all...]
/illumos-gate/usr/src/cmd/lms/SyncLib/src/
H A DThreadUnix.cpp41 #include <sys/time.h>
102 timespec timeout, time; local
105 time.tv_sec = msecs_p / 1000;
106 time.tv_nsec = (msecs_p % 1000) * 1000000;
107 timeout.tv_sec = now.tv_sec + time.tv_sec;
108 timeout.tv_nsec = now.tv_usec + time.tv_nsec;
158 timespec time, rem; local
161 time.tv_sec = msecs_p / 1000;
162 time.tv_nsec = (msecs_p % 1000) * 1000000;
165 // rem will include the remaining time
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/bsd/
H A Dsetitimer.c7 #include <sys/time.h>
/illumos-gate/usr/src/lib/libbc/libc/sys/common/
H A Dgetdtablesize.c29 #include <sys/time.h>
/illumos-gate/usr/src/cmd/krb5/kadmin/cli/
H A Dkadmin.h56 #include <sys/time.h>
57 #include <time.h>
60 #include <sys/time.h>
62 #include <time.h>
/illumos-gate/usr/src/uts/common/sys/
H A Dtimeb.h57 time_t time; /* seconds since the Epoch */ member in struct:timeb

Completed in 126 milliseconds

1234567891011>>