Home
last modified time | relevance | path

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

/xnu-11215/osfmk/kern/
H A Dkpc_thread.c107 if (!current_thread()->kpc_buf) { in kpc_set_thread_counting()
134 if (thread->kpc_buf) { in kpc_update_thread_counters()
136 thread->kpc_buf[i] += cpu->cpu_kpc_buf[1][i] - cpu->cpu_kpc_buf[0][i]; in kpc_update_thread_counters()
141 if (!current_thread()->kpc_buf) { in kpc_update_thread_counters()
165 if (!thread->kpc_buf) { in kpc_get_curthread_counters()
175 memcpy( buf, thread->kpc_buf, in kpc_get_curthread_counters()
207 thread->kpc_buf = kpc_counterbuf_alloc(); in kpc_thread_create()
216 if (!thread->kpc_buf) { in kpc_thread_destroy()
221 buf = thread->kpc_buf; in kpc_thread_destroy()
222 thread->kpc_buf = NULL; in kpc_thread_destroy()
[all …]
H A Dthread.h855 uint64_t *kpc_buf; member