Home
last modified time | relevance | path

Searched refs:p_memstat_prio_start (Results 1 – 3 of 3) sorted by relevance

/xnu-12377.41.6/bsd/kern/
H A Dkern_memorystatus.c2798 p->p_memstat_prio_start = mach_absolute_time(); in memorystatus_add()
2847 assert(p->p_memstat_prio_start != 0); in _memstat_record_prio_transition()
2848 if (now < p->p_memstat_prio_start) { in _memstat_record_prio_transition()
2853 p->p_memstat_prio_start = now; in _memstat_record_prio_transition()
2855 p->p_memstat_idle_delta = now - p->p_memstat_prio_start; in _memstat_record_prio_transition()
2865 p->p_memstat_prio_start = now; in _memstat_record_prio_transition()
3334 if (now > p->p_memstat_prio_start) { in memorystatus_remove()
3335 p->p_memstat_idle_delta = now - p->p_memstat_prio_start; in memorystatus_remove()
5390 absolutetime_to_nanoseconds(killtime - p->p_memstat_prio_start, &time_in_priority_band_secs); in memorystatus_kill_specific_process()
5856 entry->jse_prio_start = p->p_memstat_prio_start; in memorystatus_update_jetsam_snapshot_entry_locked()
[all …]
H A Dkern_fork.c1205 child_proc->p_memstat_prio_start = mach_absolute_time(); in forkproc()
/xnu-12377.41.6/bsd/sys/
H A Dproc_internal.h475 …uint64_t p_memstat_prio_start; /* abstime process transitioned into the current b… member