Lines Matching refs:pcpu
139 profile_probe_percpu_t *pcpu = arg; in profile_fire() local
140 profile_probe_t *prof = pcpu->profc_probe; in profile_fire()
143 late = dtrace_gethrtime() - pcpu->profc_expected; in profile_fire()
144 pcpu->profc_expected += pcpu->profc_interval; in profile_fire()
339 profile_probe_percpu_t *pcpu; in profile_online() local
341 pcpu = kmem_zalloc(sizeof (profile_probe_percpu_t), KM_SLEEP); in profile_online()
342 pcpu->profc_probe = prof; in profile_online()
345 hdlr->cyh_arg = pcpu; in profile_online()
351 pcpu->profc_expected = when->cyt_when; in profile_online()
352 pcpu->profc_interval = when->cyt_interval; in profile_online()
359 profile_probe_percpu_t *pcpu = oarg; in profile_offline() local
361 ASSERT(pcpu->profc_probe == arg); in profile_offline()
362 kmem_free(pcpu, sizeof (profile_probe_percpu_t)); in profile_offline()