Symbol: times
bin/cpdup/hcproto.c
1844
hc_utimes(struct HostConf *hc, const char *path, const struct timeval *times)
bin/cpdup/hcproto.c
1852
return(utimes(path, times));
bin/cpdup/hcproto.c
1857
hcc_leaf_int64(trans, LC_ATIME, times[0].tv_sec);
bin/cpdup/hcproto.c
1858
hcc_leaf_int64(trans, LC_MTIME, times[1].tv_sec);
bin/cpdup/hcproto.c
1860
hcc_leaf_int32(trans, LC_ATIMENSEC, times[0].tv_usec * 1000);
bin/cpdup/hcproto.c
1861
hcc_leaf_int32(trans, LC_MTIMENSEC, times[1].tv_usec * 1000);
bin/cpdup/hcproto.c
1871
hc_lutimes(struct HostConf *hc, const char *path, const struct timeval *times)
bin/cpdup/hcproto.c
1879
return(lutimes(path, times));
bin/cpdup/hcproto.c
1884
hcc_leaf_int64(trans, LC_ATIME, times[0].tv_sec);
bin/cpdup/hcproto.c
1885
hcc_leaf_int64(trans, LC_MTIME, times[1].tv_sec);
bin/cpdup/hcproto.c
1887
hcc_leaf_int32(trans, LC_ATIMENSEC, times[0].tv_usec * 1000);
bin/cpdup/hcproto.c
1888
hcc_leaf_int32(trans, LC_MTIMENSEC, times[1].tv_usec * 1000);
bin/cpdup/hcproto.c
1901
struct timeval times[2];
bin/cpdup/hcproto.c
1904
bzero(times, sizeof(times));
bin/cpdup/hcproto.c
1913
times[0].tv_sec = HCC_INT64(item);
bin/cpdup/hcproto.c
1916
times[1].tv_sec = HCC_INT64(item);
bin/cpdup/hcproto.c
1920
times[0].tv_usec = HCC_INT32(item) / 1000;
bin/cpdup/hcproto.c
1923
times[1].tv_usec = HCC_INT32(item) / 1000;
bin/cpdup/hcproto.c
1935
return(lutimes(path, times));
bin/cpdup/hcproto.c
1937
return(utimes(path, times));
bin/cpdup/hcproto.h
120
int hc_utimes(struct HostConf *hc, const char *path, const struct timeval *times);
bin/cpdup/hcproto.h
121
int hc_lutimes(struct HostConf *hc, const char *path, const struct timeval *times);
games/larn/diag.c
195
times(&cputime); /* get cpu time */
games/larn/scores.c
638
times(&cputime);/* get CPU time -- write out score info */
games/tetris/scores.c
273
int times;
games/tetris/scores.c
299
pu->times = 1;
games/tetris/scores.c
308
if ((pu->times < MAXSCORES &&
games/tetris/scores.c
311
pu->times++;
lib/libc/gen/utime.c
38
utime(const char *path, const struct utimbuf *times)
lib/libc/gen/utime.c
42
if (times) {
lib/libc/gen/utime.c
43
tv[0].tv_sec = times->actime;
lib/libc/gen/utime.c
44
tv[1].tv_sec = times->modtime;
lib/libssh/openbsd-compat/bsd-misc.c
128
utimensat(int fd, const char *path, const struct timespec times[2],
lib/libssh/openbsd-compat/bsd-misc.c
136
tv[0].tv_sec = times[0].tv_sec;
lib/libssh/openbsd-compat/bsd-misc.c
137
tv[0].tv_usec = times[0].tv_nsec / 1000;
lib/libssh/openbsd-compat/bsd-misc.c
138
tv[1].tv_sec = times[1].tv_sec;
lib/libssh/openbsd-compat/bsd-misc.c
139
tv[1].tv_usec = times[1].tv_nsec / 1000;
lib/libtelnet/kerberos5.c
777
creds.times.endtime = 0;
sbin/hammer/cmd_config.c
105
struct timeval times[2];
sbin/hammer/cmd_config.c
162
times[0].tv_sec = st.st_mtime - 1;
sbin/hammer/cmd_config.c
163
times[0].tv_usec = 0;
sbin/hammer/cmd_config.c
164
times[1] = times[0];
sbin/hammer/cmd_config.c
166
utimes(path, times);
sbin/hammer/cmd_config.c
182
if (times[0].tv_sec == st.st_mtime) {
sbin/hammer2/zlib/hammer2_zlib_deflate.c
883
Call UPDATE_HASH() MIN_MATCH-3 more times
sbin/newfs/fscopy.c
243
struct timeval times[2];
sbin/newfs/fscopy.c
338
times[0].tv_sec = st->st_atime;
sbin/newfs/fscopy.c
339
times[0].tv_usec = 0;
sbin/newfs/fscopy.c
340
times[1].tv_sec = st->st_mtime;
sbin/newfs/fscopy.c
341
times[1].tv_usec = 0;
sbin/newfs/fscopy.c
345
if (lutimes(path, times) < 0)
sbin/vinum/list.c
594
int times;
sbin/vinum/list.c
631
for (times = 0; times < STALLCOUNT; times++) {
sbin/vinum/list.c
637
if (times == STALLCOUNT)
sbin/vinum/list.c
712
for (times = 0; times < STALLCOUNT; times++) {
sbin/vinum/list.c
718
if (times == STALLCOUNT)
sys/net/zlib.c
1522
Call UPDATE_HASH() MIN_MATCH-3 more times
sys/net/zlib.c
1687
Call UPDATE_HASH() MIN_MATCH-3 more times
sys/sys/time.h
222
int futimesat(int fd, const char *path, const struct timeval times[2]);
sys/sys/times.h
59
clock_t times (struct tms *);
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.c
888
Call UPDATE_HASH() MIN_MATCH-3 more times
test/stress/stress2/testcases/openat/doat.c
350
tests[4].tests[0].params[2].vp = times;
test/stress/stress2/testcases/openat/doat.c
354
tests[4].tests[1].params[2].vp = times;
test/stress/stress2/testcases/openat/doat.c
358
tests[4].tests[2].params[2].vp = times;
test/stress/stress2/testcases/openat/doat.c
362
tests[4].tests[3].params[2].vp = times;
test/stress/stress2/testcases/openat/doat.c
90
struct timeval times[2];
tools/tools/net80211/wesside/udps/udps.c
49
int times = 10;
tools/tools/net80211/wesside/udps/udps.c
72
times = poll_rate*pps;
tools/tools/net80211/wesside/udps/udps.c
86
for(i = 0; i < times; i++) {
usr.bin/gzip/gzip.c
1031
struct timeval times[2];
usr.bin/gzip/gzip.c
1059
TIMESPEC_TO_TIMEVAL(&times[0], &sb.st_atimespec);
usr.bin/gzip/gzip.c
1060
TIMESPEC_TO_TIMEVAL(&times[1], &sb.st_mtimespec);
usr.bin/gzip/gzip.c
1061
if (futimes(fd, times) < 0)
usr.bin/mail/cmd2.c
373
int times;
usr.bin/mail/cmd2.c
376
times = 1;
usr.bin/mail/cmd2.c
378
times = (atoi(argv[0]) + 511) / 512;
usr.bin/mail/cmd2.c
379
clob1(times);
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.c
888
Call UPDATE_HASH() MIN_MATCH-3 more times