Symbol: timekeep
lib/libc/arch/aarch64/gen/usertc.c
59
tc_get_timecount(struct timekeep *tk, u_int *tc)
lib/libc/arch/aarch64/gen/usertc.c
73
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = tc_get_timecount;
lib/libc/arch/alpha/gen/usertc.c
21
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = NULL;
lib/libc/arch/amd64/gen/usertc.c
38
tc_get_timecount(struct timekeep *tk, u_int *tc)
lib/libc/arch/amd64/gen/usertc.c
52
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = tc_get_timecount;
lib/libc/arch/arm/gen/usertc.c
21
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = NULL;
lib/libc/arch/hppa/gen/usertc.c
21
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = NULL;
lib/libc/arch/i386/gen/usertc.c
21
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = NULL;
lib/libc/arch/m88k/gen/usertc.c
21
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = NULL;
lib/libc/arch/mips64/gen/usertc.c
37
tc_get_timecount(struct timekeep *tk, u_int *tc)
lib/libc/arch/mips64/gen/usertc.c
48
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = tc_get_timecount;
lib/libc/arch/powerpc/gen/usertc.c
30
tc_get_timecount(struct timekeep *tk, u_int *tc)
lib/libc/arch/powerpc/gen/usertc.c
41
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = tc_get_timecount;
lib/libc/arch/powerpc64/gen/usertc.c
30
tc_get_timecount(struct timekeep *tk, u_int *tc)
lib/libc/arch/powerpc64/gen/usertc.c
40
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = tc_get_timecount;
lib/libc/arch/riscv64/gen/usertc.c
33
tc_get_timecount(struct timekeep *tk, u_int *tc)
lib/libc/arch/riscv64/gen/usertc.c
44
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = tc_get_timecount;
lib/libc/arch/sh/gen/usertc.c
21
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = NULL;
lib/libc/arch/sparc64/gen/usertc.c
42
tc_get_timecount(struct timekeep *tk, u_int *tc)
lib/libc/arch/sparc64/gen/usertc.c
56
int (*const _tc_get_timecount)(struct timekeep *, u_int *) = tc_get_timecount;
lib/libc/dlfcn/init.c
51
struct timekeep *_timekeep;
lib/libc/hidden/sys/timetc.h
28
extern struct timekeep *_timekeep;
lib/libc/hidden/sys/timetc.h
30
extern int (*const _tc_get_timecount)(struct timekeep *, u_int *);
lib/libc/hidden/sys/timetc.h
32
int _microtime(struct timeval *, struct timekeep *);
lib/libc/hidden/sys/timetc.h
33
int _nanotime(struct timespec *, struct timekeep *);
lib/libc/hidden/sys/timetc.h
34
int _nanoruntime(struct timespec *, struct timekeep *);
lib/libc/hidden/sys/timetc.h
35
int _nanouptime(struct timespec *, struct timekeep *);
lib/libc/sys/microtime.c
108
_nanotime(struct timespec *tsp, struct timekeep *tk)
lib/libc/sys/microtime.c
119
_nanoruntime(struct timespec *ts, struct timekeep *tk)
lib/libc/sys/microtime.c
131
_nanouptime(struct timespec *tsp, struct timekeep *tk)
lib/libc/sys/microtime.c
30
tc_delta(struct timekeep *tk, u_int *delta)
lib/libc/sys/microtime.c
41
binuptime(struct bintime *bt, struct timekeep *tk)
lib/libc/sys/microtime.c
59
binruntime(struct bintime *bt, struct timekeep *tk)
lib/libc/sys/microtime.c
78
bintime(struct bintime *bt, struct timekeep *tk)
lib/libc/sys/microtime.c
97
_microtime(struct timeval *tvp, struct timekeep *tk)
lib/libc/sys/w_clock_gettime.c
26
struct timekeep *timekeep = _timekeep;
lib/libc/sys/w_clock_gettime.c
28
if (timekeep == NULL || timekeep->tk_user == 0)
lib/libc/sys/w_clock_gettime.c
33
rc = _nanotime(tp, timekeep);
lib/libc/sys/w_clock_gettime.c
36
rc = _nanoruntime(tp, timekeep);
lib/libc/sys/w_clock_gettime.c
40
rc = _nanouptime(tp, timekeep);
lib/libc/sys/w_gettimeofday.c
24
struct timekeep *timekeep = _timekeep;
lib/libc/sys/w_gettimeofday.c
27
if (timekeep == NULL || timekeep->tk_user == 0)
lib/libc/sys/w_gettimeofday.c
31
rc = _microtime(tp, timekeep);
sys/kern/kern_exec.c
73
struct timekeep *timekeep;
sys/kern/kern_exec.c
922
size_t timekeep_sz = round_page(sizeof(struct timekeep));
sys/kern/kern_exec.c
948
timekeep = (struct timekeep *)va;
sys/kern/kern_exec.c
949
timekeep->tk_version = TK_VERSION;
sys/kern/kern_tc.c
628
if (timekeep == NULL)
sys/kern/kern_tc.c
632
timekeep->tk_generation = 0;
sys/kern/kern_tc.c
634
timekeep->tk_scale = th->th_scale;
sys/kern/kern_tc.c
635
timekeep->tk_offset_count = th->th_offset_count;
sys/kern/kern_tc.c
636
timekeep->tk_offset = th->th_offset;
sys/kern/kern_tc.c
637
timekeep->tk_naptime = th->th_naptime;
sys/kern/kern_tc.c
638
timekeep->tk_boottime = th->th_boottime;
sys/kern/kern_tc.c
640
timekeep->tk_counter_mask = th->th_counter->tc_counter_mask;
sys/kern/kern_tc.c
641
timekeep->tk_user = th->th_counter->tc_user;
sys/kern/kern_tc.c
645
timekeep->tk_generation = th->th_generation;
sys/sys/timetc.h
110
extern struct timekeep *timekeep;