Home
last modified time | relevance | path

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

/xnu-12377.1.9/bsd/kern/
H A Dkern_memorystatus_notify.c832 uint64_t curr_ts, curr_ts_seconds; in mark_knote_send_time() local
840 curr_ts = mach_absolute_time(); in mark_knote_send_time()
842 absolutetime_to_nanoseconds(curr_ts, &curr_ts_seconds); in mark_knote_send_time()
867 update_knote_footprint_history(struct knote *kn, task_t task, uint64_t curr_ts) in update_knote_footprint_history() argument
876 absolutetime_to_nanoseconds(curr_ts, &curr_ts_s); in update_knote_footprint_history()
911 next_run = curr_ts + absolutetime_in_minute; in update_knote_footprint_history()
913 next_run = curr_ts + (absolutetime_in_minute * 5); in update_knote_footprint_history()
916 next_run = curr_ts + (absolutetime_in_minute * 20); in update_knote_footprint_history()
1084 uint64_t curr_ts = mach_absolute_time(); in vm_pressure_select_optimal_candidate_to_notify() local
1142 telemetry_update = update_knote_footprint_history(kn, t, curr_ts); in vm_pressure_select_optimal_candidate_to_notify()
[all …]
/xnu-12377.1.9/osfmk/vm/
H A Dvm_pageout.c4723 uint64_t curr_ts, abs_time_since_level_transition, time_in_ns; local
4744 curr_ts = mach_absolute_time();
4745 abs_time_since_level_transition = curr_ts - vm_pressure_last_level_transition_abs;
4773 next_warning_notification_sent_at_ts = curr_ts;
4786 next_critical_notification_sent_at_ts = curr_ts;
4827 …vm_pressure_last_level_transition_abs = curr_ts; /* renew the window of observation for a stuck pr…