/illumos-gate/usr/src/lib/libast/common/tm/ |
H A D | tmleap.c | 33 * return clock with leap seconds adjusted 38 tmleap(register time_t* clock) argument 40 return tmxsec(tmxleap(tmxclock(clock)));
|
H A D | tmmake.c | 33 * return Tm_t for clock 38 tmmake(time_t* clock) argument 40 return tmxmake(tmxclock(clock));
|
H A D | tmdate.c | 38 tmdate(const char* s, char** e, time_t* clock) argument 40 return tmxsec(tmxdate(s, e, tmxclock(clock)));
|
H A D | tmform.c | 36 * format date given clock 41 tmform(char* buf, const char* format, time_t* clock) argument 43 return tmfmt(buf, 256, format, clock);
|
H A D | tmfmt.c | 33 * format date given clock into buf of length len 38 tmfmt(char* buf, size_t len, const char* format, time_t* clock) argument 40 return tmxfmt(buf, len, format, tmxclock(clock));
|
H A D | tmscan.c | 38 tmscan(const char* s, char** e, const char* format, char** f, time_t* clock, long flags) argument 40 return tmxsec(tmxscan(s, e, format, f, tmxclock(clock), flags));
|
H A D | tminit.c | 122 * return minutes west of GMT for local time clock 129 tzwest(time_t* clock, int* isdst) argument 141 if (!(tp = gmtime(clock))) 148 clock = &epoch; 149 tp = gmtime(clock); 159 tp = tmlocaltime(clock);
|
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | clock.c | 36 #include <sys/param.h> /* for HZ (clock frequency in Hz) */ 43 clock() function
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | clock.c | 36 #include <sys/param.h> /* for HZ (clock frequency in Hz) */ 42 clock(void) function
|
/illumos-gate/usr/src/lib/libast/common/string/ |
H A D | fmttime.c | 33 fmttime(const char* format, time_t clock) argument 39 tmfmt(buf, z, format, &clock);
|
/illumos-gate/usr/src/lib/libresolv2/common/bsd/ |
H A D | gettimeofday.c | 48 time_t clock, time(time_t *); local 50 if (time(&clock) == (time_t) -1) 53 tvp->tv_sec = clock;
|
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | compat.c | 67 nsldapi_compat_ctime_r( const time_t *clock, char *buf, int buflen ) argument 69 NSLDAPI_CTIME1( clock, buf, buflen );
|
/illumos-gate/usr/src/lib/libuuid/common/ |
H A D | uuid_misc.h | 69 uint16_t clock; /* saved clock sequence */ member in struct:__anon4186
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/in.daytimed/ |
H A D | in.daytimed.c | 49 time_t clock; local 52 clock = time(NULL); 53 (void) strlcpy(buf, ctime(&clock), sizeof (buf));
|
/illumos-gate/usr/src/cmd/bnu/ |
H A D | gnxseq.c | 45 time_t clock; local 86 time(&clock); 87 tp = localtime(&clock);
|
H A D | utility.c | 112 time_t clock; local 115 (void) time(&clock); 116 tp = localtime(&clock);
|
/illumos-gate/usr/src/cmd/saf/ |
H A D | log.c | 107 time_t clock; /* current time in seconds */ local 110 (void) time(&clock); 111 timestamp = ctime(&clock); 172 time_t clock; /* current time in seconds */ local 175 (void) time(&clock); 176 timestamp = ctime(&clock);
|
/illumos-gate/usr/src/cmd/format/ |
H A D | add_definition.c | 83 time_t clock; local 164 (void) time(&clock); 165 (void) fprintf(fd, " saved on %s#\n", ctime(&clock));
|
/illumos-gate/usr/src/cmd/ttymon/ |
H A D | tmlog.c | 147 time_t clock; /* current time in seconds */ local 159 (void) time(&clock); 160 timestamp = ctime(&clock); 273 time_t clock; /* current time in seconds */ local 275 (void) time(&clock); 276 timestamp = ctime(&clock);
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.talkd/ |
H A D | announce.c | 187 struct timeval clock; local 209 (void) gettimeofday(&clock, NULL); 210 localclock = localtime(&clock.tv_sec);
|
/illumos-gate/usr/src/cmd/mdb/common/libstand/ |
H A D | ctime.c | 33 localtime(const time_t *clock) argument 44 days = *clock / SECS_PER_DAY; 45 rem = *clock % SECS_PER_DAY;
|
/illumos-gate/usr/src/cmd/fm/eversholt/common/ |
H A D | out.c | 205 time_t clock; local 208 (void) time(&clock); 209 tmsg = ctime(&clock);
|
/illumos-gate/usr/src/cmd/listen/ |
H A D | lslog.c | 291 time_t clock; local 294 (void)time(&clock); 295 tm_p = (struct tm *) localtime(&clock);
|
/illumos-gate/usr/src/stand/lib/sa/ |
H A D | time.c | 52 * Initializes our "clock" to the creation date of /timestamp, which is 90 gmtime(const time_t *clock) argument 101 days = *clock / SECS_PER_DAY; 102 rem = *clock % SECS_PER_DAY; 146 localtime(const time_t *clock) argument 148 return (gmtime(clock));
|
/illumos-gate/usr/src/uts/i86pc/io/ |
H A D | hrtimers.c | 46 * timers. We must provide UNIX with a HZ resolution clock and give 51 static int hrt_bsd_cancel(int clock); 52 static int hrt_checkclock(register int clock); 305 hrt_bsd_cancel(int clock) argument 310 switch (clock) { 344 * Return 0 if "clock" is a valid clock. Otherwise, 349 hrt_checkclock(register int clock) argument 351 switch (clock)
|