Home
last modified time | relevance | path

Searched refs:curr_ts (Results 1 – 2 of 2) sorted by relevance

/xnu-8020.140.41/bsd/kern/
H A Dkern_memorystatus_notify.c838 uint64_t curr_ts, curr_ts_seconds; in mark_knote_send_time() local
846 curr_ts = mach_absolute_time(); in mark_knote_send_time()
848 absolutetime_to_nanoseconds(curr_ts, &curr_ts_seconds); in mark_knote_send_time()
873 update_knote_footprint_history(struct knote *kn, task_t task, uint64_t curr_ts) in update_knote_footprint_history() argument
882 absolutetime_to_nanoseconds(curr_ts, &curr_ts_s); in update_knote_footprint_history()
917 next_run = curr_ts + absolutetime_in_minute; in update_knote_footprint_history()
919 next_run = curr_ts + (absolutetime_in_minute * 5); in update_knote_footprint_history()
922 next_run = curr_ts + (absolutetime_in_minute * 20); in update_knote_footprint_history()
939 uint64_t curr_ts = mach_absolute_time(); in memorystatus_pressure_interval_send() local
940 src_event->duration = curr_ts - src_event->duration; in memorystatus_pressure_interval_send()
[all …]
/xnu-8020.140.41/osfmk/vm/
H A Dvm_pageout.c4424 uint64_t curr_ts, abs_time_since_level_transition, time_in_ns; in vm_pressure_response() local
4454 curr_ts = mach_absolute_time(); in vm_pressure_response()
4455 abs_time_since_level_transition = curr_ts - vm_pressure_last_level_transition_abs; in vm_pressure_response()
4483 next_warning_notification_sent_at_ts = curr_ts; in vm_pressure_response()
4496 next_critical_notification_sent_at_ts = curr_ts; in vm_pressure_response()
4537 …vm_pressure_last_level_transition_abs = curr_ts; /* renew the window of observation for a stuck pr… in vm_pressure_response()