/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | time.c | 26 * Backwards compatible time call. 29 #include <sys/time.h> 32 time(t) function
|
/illumos-gate/usr/src/cmd/tnf/tnfdump/ |
H A D | state.h | 31 #include <sys/time.h> 40 * time: timestamp of record 44 hrtime_t time; member in struct:entry
|
/illumos-gate/usr/src/uts/common/syscall/ |
H A D | time.c | 40 #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/libc/port/sys/ |
H A D | time.c | 29 #pragma weak _time = time 34 #include <time.h> 37 time(time_t *tloc) function
|
/illumos-gate/usr/src/tools/onbld/Checks/ |
H A D | Copyright.py | 31 import time, re, sys namespace 40 return re.search(r'Copyright.*\b%s\b' % time.strftime('%Y'), line)
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | timeb.h | 57 time_t time; /* seconds since the Epoch */ member in struct:timeb
|
/illumos-gate/usr/src/cmd/make/lib/vroot/ |
H A D | utimes.cc | 28 #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/uboot/lib/ |
H A D | time.c | 36 * 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/lib/libbc/libc/compat/4.1/ |
H A D | ftime.c | 30 #include <sys/time.h> 42 time_t time; member in struct:timeb 58 tp->time = t.tv_sec;
|
/illumos-gate/usr/src/cmd/backup/lib/ |
H A D | getdate.y | 28 time_t time; /* Seconds since the epoch */ 33 #include <time.h> 127 item : time { 145 time : tUNUMBER tMERIDIAN { label 342 /* Assorted relative-time words. */ 768 "%s: Bad date/time format\n"), p); 772 now = time((time_t *)0); 872 time(¤t); 900 (void) time(&ftz.time); [all...] |
/illumos-gate/usr/src/cmd/krb5/kadmin/cli/ |
H A D | getdate.y | 88 current time zone checks various CPP symbols to see if special 90 Include <sys/time.h> if that will be used. */ 95 #include <time.h> 102 #include <sys/time.h> 103 #include <time.h> 106 #include <sys/time.h> 108 #include <time.h> 122 time_t time; /* Seconds since the epoch */ 268 item : time { 285 time label [all...] |
/illumos-gate/usr/src/boot/sys/boot/ofw/libofw/ |
H A D | ofw_time.c | 34 time(time_t *tloc) function 48 time(&n);
|
/illumos-gate/usr/src/cmd/isns/isnsd/ |
H A D | isns_sched.h | 35 uint32_t time; member in struct:el_notice 44 uint32_t time; member in struct:el_key
|
/illumos-gate/usr/src/psm/promif/ieee1275/sun4u/ |
H A D | prom_opl.c | 37 * prom_opl_get_tod - this function gets time-of-day and stick value from OBP. 42 prom_opl_get_tod(time_t *time, int64_t *stickval) argument 50 ci[4] = (cell_t)0; /* The result: time */ 57 *time = ci[4]; 61 * prom_opl_set_diff - this function updates time difference 62 * w.r.t. SP/OBP reference time. 71 ci[0] = p1275_ptr2cell("FJSV,set-domain-time"); /* Service name */ 74 ci[3] = (cell_t)diff; /* Arg1: time diff */
|
/illumos-gate/usr/src/cmd/lvm/metassist/common/ |
H A D | volume_output.c | 34 #include <time.h> 167 time_t now = time(NULL); 168 struct tm *time = localtime(&now); local 170 time->tm_hour, time->tm_min, time->tm_sec);
|
/illumos-gate/usr/src/lib/pyzfs/common/ |
H A D | holds.py | 31 import time namespace 69 "timestamp": time.ctime(tm)}
|
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/ |
H A D | time.c | 38 * Return the BIOS time-of-day value. 60 * Return the time in seconds since the beginning of the day. 70 time(time_t *t) function
|
/illumos-gate/usr/src/boot/sys/boot/usb/ |
H A D | bsd_usbloader_test.c | 30 #include <time.h> 74 uint32_t time; local 78 time = 0; 86 if (++time >= (1000 / hz)) { 87 time = 0;
|
/illumos-gate/usr/src/lib/libresolv2/common/nameser/ |
H A D | ns_date.c | 32 #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/cmd-inet/usr.bin/ |
H A D | rdate.c | 45 * 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/fm/fmd/common/ |
H A D | fmd_trace.c | 112 hrtime_t time = gethrtime(); local 121 trp->tr_time = time; 144 hrtime_t time = gethrtime(); local 159 trp->tr_time = time;
|
/illumos-gate/usr/src/boot/sys/boot/efi/libefi/ |
H A D | time.c | 47 #include <time.h> 48 #include <sys/time.h> 154 // EFI time is repored in local time. Adjust for any time zone offset to 178 // Get time from EFI 186 // Convert to UNIX time (ie seconds since the epoch 210 time(time_t *tloc) function 223 return time(0);
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/rcache/ |
H A D | rc_mem.c | 39 krb5_int32 time; local 44 krb5_timeofday(context, &time); 50 if (alive(context, rep, t->lifespan, time) == CMP_EXPIRED) 58 if (alive(context, &ta->rep, t->lifespan, time)
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/wpad/ |
H A D | eloop.h | 32 struct timeval time; member in struct:eloop_timeout
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.talkd/ |
H A D | table.c | 47 * search on a double-linked list. A time is kept with each 53 #include <sys/time.h> 65 long time; member in struct:table_entry 99 if ((ptr->time - current_time) > MAX_LIFE) { 155 if ((ptr->time - current_time) > MAX_LIFE) { 175 /* update the time if we 'touch' it */ 176 ptr->time = current_time; 206 ptr->time = current_time;
|