/src/sys/sys/ |
condvar.h | 41 struct bintime; 52 int cv_timedwaitbt(kcondvar_t *, struct kmutex *, struct bintime *, 53 const struct bintime *); 54 int cv_timedwaitbt_sig(kcondvar_t *, struct kmutex *, struct bintime *, 55 const struct bintime *);
|
time.h | 97 * hide bintime for _STANDALONE because this header is used for hpcboot.exe, 102 struct bintime { struct 108 bintime_addx(struct bintime *bt, uint64_t x) 119 bintime_add(struct bintime *bt, const struct bintime *bt2) 131 bintime_sub(struct bintime *bt, const struct bintime *bt2) 175 bintime2timespec(const struct bintime *bt, struct timespec *ts) 184 timespec2bintime(const struct timespec *ts, struct bintime *bt) 192 bintime2timeval(const struct bintime *bt, struct timeval *tv [all...] |
timevar.h | 152 * "bin" == struct bintime == seconds + 64 bit fraction of seconds. 169 void binuptime(struct bintime *); 173 void bintime(struct bintime *); 177 void getbinuptime(struct bintime *); 181 void getbintime(struct bintime *); 185 void getbinboottime(struct bintime *); 279 (&(const struct bintime) { \
|
resourcevar.h | 44 struct bintime; 112 void addrulwp(struct lwp *, struct bintime *);
|
timepps.h | 152 struct bintime ref_time; 165 void pps_ref_event(struct pps_state *, int, struct bintime *, int);
|
kernhist.h | 49 struct bintime bt; /* time stamp */ 82 struct bintime she_bintime; 206 bintime(&_e_->bt); \
|
sched.h | 277 void updatertime(lwp_t *, const struct bintime *);
|
lwp.h | 105 struct bintime l_rtime; /* l: real time */ 106 struct bintime l_stime; /* l: start time (while ONPROC) */
|
proc.h | 292 struct bintime p_rtime; /* p: real time */
|
/src/sys/dev/flash/ |
flash_io.h | 6 struct bintime fio_creation; 7 struct bintime fio_last_write;
|
flash_io.c | 63 flash_timestamp_diff(struct bintime *bt, struct bintime *b2) 65 struct bintime b1 = *bt; 280 struct bintime now;
|
/src/sys/net/ |
if_slvar.h | 68 struct bintime sc_lastpacket; /* for watchdog */
|
/src/sys/kern/ |
kern_condvar.c | 282 bintime2timo(const struct bintime *bt) 308 static struct bintime 312 return (struct bintime) { 325 * On entry, bt is a timeout in bintime. cv_timedwaitbt subtracts 340 cv_timedwaitbt(kcondvar_t *cv, kmutex_t *mtx, struct bintime *bt, 341 const struct bintime *epsilon __diagused) 343 struct bintime slept; 396 * On entry, bt is a timeout in bintime. cv_timedwaitbt_sig 405 cv_timedwaitbt_sig(kcondvar_t *cv, kmutex_t *mtx, struct bintime *bt, 406 const struct bintime *epsilon __diagused [all...] |
kern_tc.c | 110 struct bintime th_offset; /* bin (up)time at windup */ 157 struct bintime bin; 409 TC_STATS(bintime); TC_STATS(nanotime); TC_STATS(microtime); 442 binuptime(struct bintime *bt) 499 struct bintime bt; 509 struct bintime bt; 517 bintime(struct bintime *bt) function in typeref:typename:void 519 struct bintime boottime; 530 struct bintime bt [all...] |
subr_time.c | 169 struct bintime tm = {0, 0};
|
kern_resource.c | 474 addrulwp(struct lwp *l, struct bintime *tm) 481 struct bintime diff; 509 struct bintime tm;
|
kern_history.c | 143 struct bintime bt;
|
kern_synch.c | 506 updatertime(lwp_t *l, const struct bintime *now) 615 struct bintime bt;
|
/src/sys/dev/pci/ |
if_enavar.h | 206 struct bintime timestamp; 487 bttosbt(const struct bintime _bt) 495 struct bintime _bt;
|
/src/sys/fs/nfs/server/ |
nfs_nfsdsocket.c | 409 nfsrvd_statstart(int op, struct bintime *now) 431 nfsrvd_statend(int op, uint64_t bytes, struct bintime *now, 432 struct bintime *then) 434 struct bintime dt, lnow; 560 struct bintime start_time; 635 struct bintime start_time;
|
/src/sys/dev/nand/ |
nand.h | 139 struct bintime nwc_creation; 140 struct bintime nwc_last_write;
|
/src/sys/external/isc/atheros_hal/ic/ |
ah_osdep.c | 411 struct bintime bt;
|
/src/sys/fs/nfs/common/ |
nfsport.h | 423 struct bintime srvduration[NFSV42_NOPS + NFSV4OP_FAKENOPS]; 424 struct bintime busyfrom; 425 struct bintime busytime;
|
/src/usr.bin/netstat/ |
vtw.c | 190 struct bintime timebasebin;
|
/src/sys/arch/arm/amlogic/ |
mesongx_mmc.c | 1013 struct bintime timeout = { .sec = 5, .frac = 0 }; 1014 const struct bintime epsilon = { .sec = 1, .frac = 0 };
|