Home
last modified time | relevance | path

Searched refs:now (Results 201 – 225 of 620) sorted by last modified time

12345678910>>...25

/dragonfly/tools/regression/bin/sh/builtins/
H A Dfc2.016 # Read error message, shell will read new input now
/dragonfly/test/test/
H A DWRITEME3 repository now on a SSD!
/dragonfly/test/interbench/
H A Dinterbench.c906 unsigned long start_time, now; in timekeeping_thread() local
918 now = get_usecs(&myts); in timekeeping_thread()
920 if (now > start_time) { in timekeeping_thread()
921 diff = now - start_time; in timekeeping_thread()
/dragonfly/sys/vfs/hammer2/
H A DCHANGES4 * Indirect blocks have to be fully associative (all 1024 entries) for now,
H A DTODO40 * More complex transaction sequencing and flush merging. Right now it is
98 * Crash stability. Right now the allocation table on-media is not
133 * MINIOSIZE/RADIX set to 1KB for now to avoid buffer cache deadlocks
/dragonfly/sys/platform/pc64/apic/
H A Dlapic.c668 uint64_t diff, now, val; in lapic_timer_tscdlt_reload() local
682 now = rdtsc(); in lapic_timer_tscdlt_reload()
683 val = now + diff; in lapic_timer_tscdlt_reload()
686 if (deadline == 0 || now > deadline || val < deadline) { in lapic_timer_tscdlt_reload()
1027 uint64_t now; in read_apic_timer() local
1030 now = rdtsc(); in read_apic_timer()
1031 if (val == 0 || now > val) { in read_apic_timer()
1034 val -= now; in read_apic_timer()
/dragonfly/sys/netproto/802_11/wlan/
H A Dieee80211_mesh.c269 int timesince, now; in ieee80211_mesh_rt_update() local
274 now = ticks; in ieee80211_mesh_rt_update()
283 timesince = ticks_to_msecs(now - rt->rt_updtime); in ieee80211_mesh_rt_update()
284 rt->rt_updtime = now; in ieee80211_mesh_rt_update()
H A Dieee80211_dfs.c238 int i, oldest, now; in dfs_timeout() local
242 now = oldest = ticks; in dfs_timeout()
246 if (ieee80211_time_after_eq(now, dfs->nol_event[i]+NOL_TIMEOUT)) { in dfs_timeout()
266 if (oldest != now) { in dfs_timeout()
269 callout_schedule_dfly(&dfs->nol_timer, oldest + NOL_TIMEOUT - now, in dfs_timeout()
272 callout_schedule(&dfs->nol_timer, oldest + NOL_TIMEOUT - now); in dfs_timeout()
303 int i, now; in ieee80211_dfs_notify_radar() local
331 now = ticks; in ieee80211_dfs_notify_radar()
337 dfs->nol_event[i] = now; in ieee80211_dfs_notify_radar()
/dragonfly/sys/netgraph7/
H A Dng_source.c748 struct timeval now, elapsed; in ng_source_intr() local
752 getmicrotime(&now); in ng_source_intr()
753 elapsed = now; in ng_source_intr()
757 sc->stats.lastTime = now; in ng_source_intr()
914 struct timeval now; in ng_source_dup_mod() local
915 getmicrotime(&now); in ng_source_dup_mod()
916 now.tv_sec = htonl(now.tv_sec); in ng_source_dup_mod()
917 now.tv_usec = htonl(now.tv_usec); in ng_source_dup_mod()
918 ng_source_packet_mod(sc, m, ts->offset, sizeof (now), in ng_source_dup_mod()
919 (caddr_t)&now, ts->flags); in ng_source_dup_mod()
H A DNOTES8 - all mallocs/frees now changed to use this.. JRE
100 Messages and data are deliverd in a new form. An Item now has
102 it is now the basis of all data transfer since any transfer may need to
/dragonfly/sys/netgraph7/ppp/
H A Dng_ppp.c1866 struct timeval now, age; in ng_ppp_frag_checkstale() local
1873 now.tv_sec = 0; /* uninitialized state */ in ng_ppp_frag_checkstale()
1900 if (now.tv_sec == 0) in ng_ppp_frag_checkstale()
1901 getmicrouptime(&now); in ng_ppp_frag_checkstale()
1904 age = now; in ng_ppp_frag_checkstale()
2239 struct timeval now; in ng_ppp_mp_strategy() local
2249 getmicrouptime(&now); in ng_ppp_mp_strategy()
2268 diff = now; in ng_ppp_mp_strategy()
2272 alink->lastWrite = now; in ng_ppp_mp_strategy()
2274 if (now.tv_sec < 0 || diff.tv_sec >= 10) { /* sanity */ in ng_ppp_mp_strategy()
/dragonfly/sys/netgraph7/bluetooth/hci/
H A Dng_hci_misc.c242 struct timeval now; in ng_hci_neighbor_stale() local
244 getmicrotime(&now); in ng_hci_neighbor_stale()
246 return (now.tv_sec - n->updated.tv_sec > bluetooth_hci_max_neighbor_age()); in ng_hci_neighbor_stale()
H A DTODO10 External code now uses ng_send_fn to inject data into Netgraph, so
/dragonfly/sys/netgraph7/bluetooth/l2cap/
H A DTODO10 External code now uses ng_send_fn to inject data into Netgraph, so
41 For now we destroy all channels when upstream hook is disconnected.
/dragonfly/sys/netgraph/ppp/
H A Dng_ppp.c1369 struct timeval now, age; in ng_ppp_frag_checkstale() local
1375 now.tv_sec = 0; /* uninitialized state */ in ng_ppp_frag_checkstale()
1402 if (now.tv_sec == 0) in ng_ppp_frag_checkstale()
1403 getmicrouptime(&now); in ng_ppp_frag_checkstale()
1406 age = now; in ng_ppp_frag_checkstale()
1698 struct timeval now; in ng_ppp_mp_strategy() local
1708 getmicrouptime(&now); in ng_ppp_mp_strategy()
1727 diff = now; in ng_ppp_mp_strategy()
1729 if (now.tv_sec < 0 || diff.tv_sec >= 10) { /* sanity */ in ng_ppp_mp_strategy()
/dragonfly/sys/netgraph7/bluetooth/drivers/h4/
H A DTODO10 External code now uses ng_send_fn to inject data into Netgraph, but
/dragonfly/sys/netgraph7/bluetooth/drivers/ubt/
H A DTODO11 It is a bit ugly now. Probably need a better way to discover
/dragonfly/sys/netbt/
H A Dhci_misc.c116 struct timeval now; in hci_memo_find() local
118 microtime(&now); in hci_memo_find()
124 if (now.tv_sec > memo->time.tv_sec + hci_memo_expiry) { in hci_memo_find()
/dragonfly/sys/netgraph/
H A DNOTES9 - all mallocs/frees now changed to use this.. JRE
/dragonfly/sys/net/altq/
H A Daltq_red.c275 struct timeval now; in red_addq() local
279 microtime(&now); in red_addq()
280 t = (now.tv_sec - rp->red_last.tv_sec); in red_addq()
288 t = t * 1000000 + (now.tv_usec - rp->red_last.tv_usec); in red_addq()
H A Daltq_rio.c298 struct timeval now; in rio_addq() local
308 now.tv_sec = 0; in rio_addq()
314 if (now.tv_sec == 0) in rio_addq()
315 microtime(&now); in rio_addq()
316 t = (now.tv_sec - prec->last.tv_sec); in rio_addq()
321 (now.tv_usec - prec->last.tv_usec); in rio_addq()
H A Daltq_rmclass.c742 struct timeval now; in rmc_queue_packet() local
747 RM_GETTIME(now); in rmc_queue_packet()
851 if (!rmc_satisfied(p, now)) in rmc_satisfied()
915 p->overtime_ = *now; in rmc_under_limit()
918 p->overtime_ = *now; in rmc_under_limit()
955 struct timeval now; in _rmc_wrr_dequeue_next() local
957 RM_GETTIME(now); in _rmc_wrr_dequeue_next()
1085 ifd->now_[ifd->qi_] = now; in _rmc_wrr_dequeue_next()
1123 struct timeval now; in _rmc_prr_dequeue_next() local
1125 RM_GETTIME(now); in _rmc_prr_dequeue_next()
[all …]
H A Daltq_rmclass.h69 #define RM_GETTIME(now) microtime(&now) argument
H A Daltq_subr.c225 uint64_t now; in tbr_dequeue() local
243 now = read_machclk(); in tbr_dequeue()
244 interval = now - tbr->tbr_last; in tbr_dequeue()
252 tbr->tbr_last = now; in tbr_dequeue()
/dragonfly/sys/kern/
H A Dkern_sensors.c305 time_t now; in sensor_task_thread() local
314 (now = time_uptime)) { in sensor_task_thread()
316 "timeout", (nst->nextrun - now) * hz); in sensor_task_thread()
322 if (st->nextrun > now) in sensor_task_thread()

12345678910>>...25