Symbol: tsp
games/monop/getinp.c
101
char *sp, *tsp, c;
games/monop/getinp.c
104
for (sp = buf, tsp = s1; *sp; ) {
games/monop/getinp.c
105
c = isupper((unsigned char)*tsp) ?
games/monop/getinp.c
106
tolower((unsigned char)*tsp) : *tsp;
games/monop/getinp.c
107
tsp++;
lib/libc/sys/microtime.c
108
_nanotime(struct timespec *tsp, struct timekeep *tk)
lib/libc/sys/microtime.c
114
BINTIME_TO_TIMESPEC(&bt, tsp);
lib/libc/sys/microtime.c
131
_nanouptime(struct timespec *tsp, struct timekeep *tk)
lib/libc/sys/microtime.c
137
BINTIME_TO_TIMESPEC(&bt, tsp);
regress/lib/libpthread/dlopen/dlopen.c
118
finish(const char *msg, const int *retval, const struct timespec *tsp)
regress/lib/libpthread/dlopen/dlopen.c
124
after.tv_sec -= tsp->tv_sec;
regress/lib/libpthread/dlopen/dlopen.c
125
after.tv_nsec -= tsp->tv_nsec;
regress/sys/sys/tree/rb/rb-test.c
40
#define timespecsub(tsp, usp, vsp) \
regress/sys/sys/tree/rb/rb-test.c
42
(vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
regress/sys/sys/tree/rb/rb-test.c
43
(vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
regress/sys/sys/tree/rb/rb-test.c
51
#define timespecadd(tsp, usp, vsp) \
regress/sys/sys/tree/rb/rb-test.c
53
(vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
regress/sys/sys/tree/rb/rb-test.c
54
(vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
regress/sys/sys/tree/rb/rbt-test.c
39
#define timespecsub(tsp, usp, vsp) \
regress/sys/sys/tree/rb/rbt-test.c
41
(vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
regress/sys/sys/tree/rb/rbt-test.c
42
(vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
regress/sys/sys/tree/rb/rbt-test.c
50
#define timespecadd(tsp, usp, vsp) \
regress/sys/sys/tree/rb/rbt-test.c
52
(vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
regress/sys/sys/tree/rb/rbt-test.c
53
(vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
sbin/iked/ikev2.c
1972
struct ikev2_tsp *tsp;
sbin/iked/ikev2.c
1986
if ((tsp = ibuf_reserve(buf, sizeof(*tsp))) == NULL)
sbin/iked/ikev2.c
1988
len = sizeof(*tsp);
sbin/iked/ikev2.c
1993
tsp->tsp_count = pol->pol_tssrc_count;
sbin/iked/ikev2.c
1996
tsp->tsp_count = pol->pol_tsdst_count;
sbin/iked/ikev2.c
2001
tsp->tsp_count = pol->pol_tsdst_count;
sbin/iked/ikev2.c
2004
tsp->tsp_count = pol->pol_tssrc_count;
sbin/iked/ikev2_pld.c
1456
struct ikev2_tsp *tsp)
sbin/iked/ikev2_pld.c
1460
if (left < sizeof(*tsp)) {
sbin/iked/ikev2_pld.c
1462
"(%zu < %zu)", __func__, left, sizeof(*tsp));
sbin/iked/ikev2_pld.c
1465
memcpy(tsp, msgbuf + offset, sizeof(*tsp));
sbin/iked/ikev2_pld.c
1474
struct ikev2_tsp tsp;
sbin/iked/ikev2_pld.c
1478
if (ikev2_validate_tss(msg, offset, left, &tsp))
sbin/iked/ikev2_pld.c
1481
offset += sizeof(tsp);
sbin/iked/ikev2_pld.c
1482
left -= sizeof(tsp);
sbin/iked/ikev2_pld.c
1485
tsp.tsp_count, left);
sbin/iked/ikev2_pld.c
1487
for (i = 0; i < tsp.tsp_count; i++) {
sys/arch/alpha/alpha/dec_6600.c
122
struct tsp_config *tsp;
sys/arch/alpha/alpha/dec_6600.c
130
tsp = tsp_init(0, tsp_console_hose);
sys/arch/alpha/alpha/dec_6600.c
144
if(comcnattach(&tsp->pc_iot, 0x3f8, comcnrate,
sys/arch/alpha/alpha/dec_6600.c
156
(void) pckbc_cnattach(&tsp->pc_iot, IO_KBD, KBCMDP, 0);
sys/arch/alpha/alpha/dec_6600.c
160
isa_display_console(&tsp->pc_iot, &tsp->pc_memt);
sys/arch/alpha/alpha/dec_6600.c
164
tsp = tsp_init(0, tsp_console_hose);
sys/arch/alpha/alpha/dec_6600.c
165
pci_display_console(&tsp->pc_iot, &tsp->pc_memt,
sys/arch/alpha/alpha/dec_6600.c
166
&tsp->pc_pc, CTB_TURBOSLOT_BUS(ctbslot),
sys/arch/alpha/alpha/dec_6600.c
213
struct tsp_attach_args *tsp = aux;
sys/arch/alpha/alpha/dec_6600.c
215
if (b->bus != tsp->tsp_slot)
sys/arch/alpha/pci/tsc.c
111
struct tsp_attach_args tsp;
sys/arch/alpha/pci/tsc.c
133
tsp.tsp_name = "tsp";
sys/arch/alpha/pci/tsc.c
134
tsp.tsp_slot = 0;
sys/arch/alpha/pci/tsc.c
135
config_found(self, &tsp, tscprint);
sys/arch/alpha/pci/tsc.c
137
tsp.tsp_slot += 2;
sys/arch/alpha/pci/tsc.c
138
config_found(self, &tsp, tscprint);
sys/arch/alpha/pci/tsc.c
142
tsp.tsp_slot = 1;
sys/arch/alpha/pci/tsc.c
143
config_found(self, &tsp, tscprint);
sys/arch/alpha/pci/tsc.c
145
tsp.tsp_slot += 2;
sys/arch/alpha/pci/tsc.c
146
config_found(self, &tsp, tscprint);
sys/arch/alpha/pci/tsc.c
150
tsp.tsp_name = "tsciic";
sys/arch/alpha/pci/tsc.c
151
tsp.tsp_slot = -1;
sys/arch/alpha/pci/tsc.c
152
config_found(self, &tsp, tscprint);
sys/arch/alpha/pci/tsc.c
158
struct tsp_attach_args *tsp = aux;
sys/arch/alpha/pci/tsc.c
161
printf("%s at %s", tsp->tsp_name, p);
sys/arch/alpha/pci/tsc.c
162
if (tsp->tsp_slot >= 0)
sys/arch/alpha/pci/tsc.c
163
printf(" hose %d", tsp->tsp_slot);
sys/arch/alpha/pci/tsciic.c
97
struct tsp_attach_args *tsp = (struct tsp_attach_args *)aux;
sys/arch/alpha/pci/tsciic.c
99
return strcmp(tsp->tsp_name, tsciic_cd.cd_name) == 0;
sys/arch/alpha/pci/tsp_bus_io.c
48
#define CHIP tsp
sys/arch/alpha/pci/tsp_bus_mem.c
52
#define CHIP tsp
sys/arch/alpha/pci/tsp_dma.c
102
tsp_dma_init(struct device *tsp, struct tsp_config *pcp)
sys/arch/alpha/pci/tsp_dma.c
128
tsp->dv_xname, i,
sys/dev/wscons/wsmouseinput.h
231
#define LOGTIME(tsp) \
sys/dev/wscons/wsmouseinput.h
232
((int) (((tsp)->tv_sec % 10) * 1000 + ((tsp)->tv_nsec / 1000000)))
sys/kern/kern_event.c
1258
struct timespec *tsp = NULL;
sys/kern/kern_event.c
1283
tsp = &ts;
sys/kern/kern_event.c
1338
ready = kqueue_scan(&scan, n, kev, tsp, p, &error);
sys/kern/kern_event.c
1613
kqueue_sleep(struct kqueue *kq, struct timespec *tsp)
sys/kern/kern_event.c
1621
if (tsp != NULL) {
sys/kern/kern_event.c
1623
nsecs = MIN(TIMESPEC_TO_NSEC(tsp), MAXTSLP);
sys/kern/kern_event.c
1628
if (tsp != NULL) {
sys/kern/kern_event.c
1631
timespecsub(tsp, &elapsed, tsp);
sys/kern/kern_event.c
1632
if (tsp->tv_sec < 0)
sys/kern/kern_event.c
1633
timespecclear(tsp);
sys/kern/kern_event.c
1646
struct kevent *kevp, struct timespec *tsp, struct proc *p, int *errorp)
sys/kern/kern_event.c
1674
if ((tsp != NULL && !timespecisset(tsp)) ||
sys/kern/kern_event.c
1681
error = kqueue_sleep(kq, tsp);
sys/kern/kern_synch.c
716
struct timespec *tsp = (struct timespec *)SCARG(uap, tp);
sys/kern/kern_synch.c
725
if (tsp != NULL) {
sys/kern/kern_synch.c
732
ktrabstimespec(p, tsp);
sys/kern/kern_synch.c
735
if (timespeccmp(tsp, &now, <=)) {
sys/kern/kern_synch.c
742
timespecsub(tsp, &now, tsp);
sys/kern/kern_synch.c
743
nsecs = MAX(1, MIN(TIMESPEC_TO_NSEC(tsp), MAXTSLP));
sys/kern/kern_tc.c
173
nanoboottime(struct timespec *tsp)
sys/kern/kern_tc.c
178
BINTIME_TO_TIMESPEC(&bt, tsp);
sys/kern/kern_tc.c
213
nanouptime(struct timespec *tsp)
sys/kern/kern_tc.c
218
BINTIME_TO_TIMESPEC(&bt, tsp);
sys/kern/kern_tc.c
338
nanotime(struct timespec *tsp)
sys/kern/kern_tc.c
343
BINTIME_TO_TIMESPEC(&bt, tsp);
sys/kern/kern_tc.c
378
getnanouptime(struct timespec *tsp)
sys/kern/kern_tc.c
387
BINTIME_TO_TIMESPEC(&th->th_offset, tsp);
sys/kern/kern_tc.c
408
getnanotime(struct timespec *tsp)
sys/kern/kern_tc.c
417
*tsp = th->th_nanotime;
sys/kern/sys_generic.c
539
struct timespec ts, *tsp = NULL;
sys/kern/sys_generic.c
553
tsp = &ts;
sys/kern/sys_generic.c
557
SCARG(uap, ex), tsp, NULL, retval));
sys/kern/sys_generic.c
572
struct timespec ts, *tsp = NULL;
sys/kern/sys_generic.c
585
tsp = &ts;
sys/kern/sys_generic.c
594
SCARG(uap, ex), tsp, ssp, retval));
sys/kern/sys_generic.c
872
struct timespec ts, *tsp = NULL;
sys/kern/sys_generic.c
880
tsp = &ts;
sys/kern/sys_generic.c
883
return (doppoll(p, SCARG(uap, fds), SCARG(uap, nfds), tsp, NULL,
sys/kern/sys_generic.c
898
struct timespec ts, *tsp = NULL;
sys/kern/sys_generic.c
910
tsp = &ts;
sys/kern/sys_generic.c
919
return (doppoll(p, SCARG(uap, fds), SCARG(uap, nfds), tsp, ssp,
sys/kern/vfs_syscalls.c
2604
const struct timespec *tsp;
sys/kern/vfs_syscalls.c
2607
tsp = SCARG(uap, times);
sys/kern/vfs_syscalls.c
2608
if (tsp != NULL) {
sys/kern/vfs_syscalls.c
2609
error = copyin(tsp, ts, sizeof(ts));
sys/kern/vfs_syscalls.c
2743
const struct timespec *tsp;
sys/kern/vfs_syscalls.c
2746
tsp = SCARG(uap, times);
sys/kern/vfs_syscalls.c
2747
if (tsp != NULL) {
sys/kern/vfs_syscalls.c
2748
error = copyin(tsp, ts, sizeof(ts));
sys/msdosfs/direntry.h
125
void unix2dostime(struct timespec *tsp, u_int16_t *ddp, u_int16_t *dtp, u_int8_t *dhp);
sys/msdosfs/direntry.h
126
void dos2unixtime(u_int dd, u_int dt, u_int dh, struct timespec *tsp);
sys/msdosfs/msdosfs_conv.c
111
t = tsp->tv_sec;
sys/msdosfs/msdosfs_conv.c
164
*dhp = (tsp->tv_sec & 1) * 100 + tsp->tv_nsec / 10000000;
sys/msdosfs/msdosfs_conv.c
184
dos2unixtime(u_int dd, u_int dt, u_int dh, struct timespec *tsp)
sys/msdosfs/msdosfs_conv.c
196
tsp->tv_sec = 0;
sys/msdosfs/msdosfs_conv.c
197
tsp->tv_nsec = 0;
sys/msdosfs/msdosfs_conv.c
230
tsp->tv_sec = seconds + lastseconds;
sys/msdosfs/msdosfs_conv.c
231
tsp->tv_nsec = (dh % 100) * 10000000;
sys/msdosfs/msdosfs_conv.c
98
unix2dostime(struct timespec *tsp, u_int16_t *ddp, u_int16_t *dtp, u_int8_t *dhp)
sys/sys/time.h
113
#define timespecclear(tsp) (tsp)->tv_sec = (tsp)->tv_nsec = 0
sys/sys/time.h
114
#define timespecisset(tsp) ((tsp)->tv_sec || (tsp)->tv_nsec)
sys/sys/time.h
115
#define timespecisvalid(tsp) \
sys/sys/time.h
116
((tsp)->tv_nsec >= 0 && (tsp)->tv_nsec < 1000000000L)
sys/sys/time.h
117
#define timespeccmp(tsp, usp, cmp) \
sys/sys/time.h
118
(((tsp)->tv_sec == (usp)->tv_sec) ? \
sys/sys/time.h
119
((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
sys/sys/time.h
120
((tsp)->tv_sec cmp (usp)->tv_sec))
sys/sys/time.h
121
#define timespecadd(tsp, usp, vsp) \
sys/sys/time.h
123
(vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
sys/sys/time.h
124
(vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
sys/sys/time.h
130
#define timespecsub(tsp, usp, vsp) \
sys/sys/time.h
132
(vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
sys/sys/time.h
133
(vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
usr.bin/kdump/ktrstruct.c
167
print_timespec(const struct timespec *tsp, int relative)
usr.bin/kdump/ktrstruct.c
169
if (tsp->tv_nsec == UTIME_NOW)
usr.bin/kdump/ktrstruct.c
171
else if (tsp->tv_nsec == UTIME_OMIT)
usr.bin/kdump/ktrstruct.c
174
print_time(tsp->tv_sec, relative, tsp->tv_nsec);
usr.bin/kdump/ktrstruct.c
175
if (tsp->tv_nsec != 0)
usr.bin/kdump/ktrstruct.c
176
printf(".%09ld", tsp->tv_sec >= 0 ? tsp->tv_nsec :
usr.bin/kdump/ktrstruct.c
177
1000000000 - tsp->tv_nsec);
usr.bin/kdump/ktrstruct.c
244
ktrtimespec(const struct timespec *tsp, int relative)
usr.bin/kdump/ktrstruct.c
247
print_timespec(tsp, relative);
usr.bin/lex/dfa.c
1000
nset[++numstates] = tsp;
usr.bin/lex/dfa.c
235
int stkpos, ns, tsp;
usr.bin/lex/dfa.c
313
tsp = trans1[ns] + MARKER_DIFFERENCE;
usr.bin/lex/dfa.c
315
if (tsp != NO_TRANSITION) {
usr.bin/lex/dfa.c
316
if (!IS_MARKED (tsp))
usr.bin/lex/dfa.c
317
STACK_STATE (tsp);
usr.bin/lex/dfa.c
319
tsp = trans2[ns];
usr.bin/lex/dfa.c
321
if (tsp != NO_TRANSITION
usr.bin/lex/dfa.c
322
&& !IS_MARKED (tsp))
usr.bin/lex/dfa.c
323
STACK_STATE (tsp);
usr.bin/lex/dfa.c
941
int ns, tsp, sym, i, j, lenccl, ch, numstates, ccllist;
usr.bin/lex/dfa.c
948
tsp = trans1[ns];
usr.bin/lex/dfa.c
977
nset[++numstates] = tsp;
usr.bin/lex/dfa.c
990
nset[++numstates] = tsp;
usr.bin/touch/touch.c
160
stime_arg1(char *arg, struct timespec *tsp)
usr.bin/touch/touch.c
227
tsp[0].tv_sec = tsp[1].tv_sec = mktime(lt);
usr.bin/touch/touch.c
228
if (tsp[0].tv_sec == -1 && lt->tm_wday == -1)
usr.bin/touch/touch.c
232
tsp[0].tv_nsec = tsp[1].tv_nsec = 0;
usr.bin/touch/touch.c
236
stime_arg2(char *arg, int year, struct timespec *tsp)
usr.bin/touch/touch.c
269
tsp[0].tv_sec = tsp[1].tv_sec = mktime(lt);
usr.bin/touch/touch.c
270
if (tsp[0].tv_sec == -1 && lt->tm_wday == -1)
usr.bin/touch/touch.c
274
tsp[0].tv_nsec = tsp[1].tv_nsec = 0;
usr.bin/touch/touch.c
278
stime_file(char *fname, struct timespec *tsp)
usr.bin/touch/touch.c
284
tsp[0] = sb.st_atim;
usr.bin/touch/touch.c
285
tsp[1] = sb.st_mtim;
usr.bin/touch/touch.c
289
stime_argd(char *arg, struct timespec *tsp)
usr.bin/touch/touch.c
303
tsp[0].tv_nsec = 0;
usr.bin/touch/touch.c
308
tsp[0].tv_nsec = tsp[0].tv_nsec * 10 +
usr.bin/touch/touch.c
318
tsp[0].tv_nsec *= 10;
usr.bin/touch/touch.c
329
tsp[0].tv_sec = utc ? timegm(&tm) : mktime(&tm);
usr.bin/touch/touch.c
330
if (tsp[0].tv_sec == -1 && tm.tm_wday == -1)
usr.bin/touch/touch.c
333
tsp[1] = tsp[0];
usr.bin/vi/common/line.c
520
SCR *tsp;
usr.bin/vi/common/line.c
527
TAILQ_FOREACH(tsp, &sp->gp->dq, q)
usr.bin/vi/common/line.c
528
if (sp != tsp && tsp->ep == ep)
usr.bin/vi/common/line.c
529
if (vs_change(tsp, lno, op))
usr.bin/vi/common/screen.c
131
SCR *tsp;
usr.bin/vi/common/screen.c
143
TAILQ_FOREACH(tsp, &sp->gp->dq, q) {
usr.bin/vi/common/screen.c
144
if (tsp == sp) {
usr.bin/vi/common/screen.c
149
TAILQ_FOREACH(tsp, &sp->gp->hq, q) {
usr.bin/vi/common/screen.c
150
if (tsp == sp) {
usr.bin/vi/ex/ex_screen.c
102
SCR *tsp;
usr.bin/vi/ex/ex_screen.c
113
TAILQ_FOREACH(tsp, &gp->hq, q) {
usr.bin/vi/ex/ex_screen.c
116
col += len = strlen(tsp->frp->name) + sep;
usr.bin/vi/ex/ex_screen.c
125
(void)ex_puts(sp, tsp->frp->name);
usr.bin/vi/ex/ex_script.c
350
SCR *tsp;
usr.bin/vi/ex/ex_script.c
359
TAILQ_FOREACH(tsp, &gp->dq, q)
usr.bin/vi/ex/ex_script.c
372
TAILQ_FOREACH(tsp, &gp->dq, q)
usr.bin/vi/ex/ex_script.c
395
TAILQ_FOREACH(tsp, &gp->dq, q)
usr.bin/vi/ex/ex_visual.c
135
tsp = sp;
usr.bin/vi/ex/ex_visual.c
136
if (vi(&tsp))
usr.bin/vi/ex/ex_visual.c
37
SCR *tsp;
usr.bin/vi/vi/vi.c
1003
SCR *tsp;
usr.bin/vi/vi/vi.c
1009
while ((tsp = TAILQ_FIRST(&gp->dq))) {
usr.bin/vi/vi/vi.c
1010
free(_HMAP(tsp));
usr.bin/vi/vi/vi.c
1011
_HMAP(tsp) = NULL;
usr.bin/vi/vi/vi.c
1012
TAILQ_REMOVE(&gp->dq, tsp, q);
usr.bin/vi/vi/vi.c
1013
TAILQ_INSERT_TAIL(&gp->hq, tsp, q);
usr.bin/vi/vi/vs_refresh.c
100
(F_ISSET(VIP(tsp), VIP_CUR_INVALID) ?
usr.bin/vi/vi/vs_refresh.c
131
TAILQ_FOREACH(tsp, &gp->dq, q)
usr.bin/vi/vi/vs_refresh.c
132
if (F_ISSET(tsp, SC_STATUS)) {
usr.bin/vi/vi/vs_refresh.c
134
vs_resolve(tsp, sp, 0);
usr.bin/vi/vi/vs_refresh.c
65
SCR *tsp;
usr.bin/vi/vi/vs_refresh.c
78
TAILQ_FOREACH(tsp, &gp->dq, q)
usr.bin/vi/vi/vs_refresh.c
79
if (tsp != sp)
usr.bin/vi/vi/vs_refresh.c
80
F_SET(tsp, SC_SCR_REDRAW | SC_STATUS);
usr.bin/vi/vi/vs_refresh.c
95
TAILQ_FOREACH(tsp, &gp->dq, q)
usr.bin/vi/vi/vs_refresh.c
96
if (tsp != sp && !F_ISSET(tsp, SC_EXIT | SC_EXIT_FORCE) &&
usr.bin/vi/vi/vs_refresh.c
97
(F_ISSET(tsp, pub_paint) ||
usr.bin/vi/vi/vs_refresh.c
98
F_ISSET(VIP(tsp), priv_paint))) {
usr.bin/vi/vi/vs_refresh.c
99
(void)vs_paint(tsp,
usr.sbin/amd/amd/srvr_nfs.c
257
struct sockaddr_in *tsp, void *idv, int done)
usr.sbin/makefs/msdos/direntry.h
124
void unix2dostime(const struct timespec *tsp, int minuteswest,
usr.sbin/makefs/msdos/msdosfs_conv.c
108
t = tsp->tv_sec - (minuteswest * 60)
usr.sbin/makefs/msdos/msdosfs_conv.c
162
*dhp = (tsp->tv_sec & 1) * 100 + tsp->tv_nsec / 10000000;
usr.sbin/makefs/msdos/msdosfs_conv.c
94
unix2dostime(const struct timespec *tsp, int minuteswest, u_int16_t *ddp,
usr.sbin/tcpdump/print-timed.c
55
struct tsp *tsp = (struct tsp *)bp;
usr.sbin/tcpdump/print-timed.c
59
TCHECK(tsp->tsp_type);
usr.sbin/tcpdump/print-timed.c
60
if (tsp->tsp_type < TSPTYPENUMBER)
usr.sbin/tcpdump/print-timed.c
61
printf("TSP_%s", tsptype[tsp->tsp_type]);
usr.sbin/tcpdump/print-timed.c
63
printf("(tsp_type %#x)", tsp->tsp_type);
usr.sbin/tcpdump/print-timed.c
65
TCHECK(tsp->tsp_vers);
usr.sbin/tcpdump/print-timed.c
66
printf(" vers %d", tsp->tsp_vers);
usr.sbin/tcpdump/print-timed.c
68
TCHECK(tsp->tsp_seq);
usr.sbin/tcpdump/print-timed.c
69
printf(" seq %d", tsp->tsp_seq);
usr.sbin/tcpdump/print-timed.c
71
if (tsp->tsp_type == TSP_LOOP) {
usr.sbin/tcpdump/print-timed.c
72
TCHECK(tsp->tsp_hopcnt);
usr.sbin/tcpdump/print-timed.c
73
printf(" hopcnt %d", tsp->tsp_hopcnt);
usr.sbin/tcpdump/print-timed.c
74
} else if (tsp->tsp_type == TSP_SETTIME ||
usr.sbin/tcpdump/print-timed.c
75
tsp->tsp_type == TSP_ADJTIME ||
usr.sbin/tcpdump/print-timed.c
76
tsp->tsp_type == TSP_SETDATE ||
usr.sbin/tcpdump/print-timed.c
77
tsp->tsp_type == TSP_SETDATEREQ) {
usr.sbin/tcpdump/print-timed.c
78
TCHECK(tsp->tsp_time);
usr.sbin/tcpdump/print-timed.c
79
sec = EXTRACT_32BITS(&tsp->tsp_time.tv_sec);
usr.sbin/tcpdump/print-timed.c
80
usec = EXTRACT_32BITS(&tsp->tsp_time.tv_usec);
usr.sbin/tcpdump/print-timed.c
94
end = endof(tsp->tsp_name) > snapend ? snapend : endof(tsp->tsp_name);
usr.sbin/tcpdump/print-timed.c
96
if (fn_print(tsp->tsp_name, end))