Home
last modified time | relevance | path

Searched refs:kmem_zalloc (Results 1 – 10 of 10) sorted by relevance

/xnu-8792.81.2/bsd/dev/dtrace/
H A Dfasttrap.c287 sigqueue_t *sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP); in fasttrap_sigtrap()
471 fasttrap_tracepoint_spec_t *new_retired = kmem_zalloc( in fasttrap_tracepoint_retire()
1487 new_fprc = kmem_zalloc(sizeof (fasttrap_proc_t), KM_SLEEP); in fasttrap_proc_lookup()
1650 new_fp = kmem_zalloc(sizeof (fasttrap_provider_t), KM_SLEEP); in fasttrap_provider_lookup()
2006 pp = kmem_zalloc(offsetof(fasttrap_probe_t, ftp_tps[pdata->ftps_noffs]), KM_SLEEP); in fasttrap_add_probe()
2247 pp = kmem_zalloc(offsetof(fasttrap_probe_t, ftp_tps[ntps]), KM_SLEEP); in fasttrap_meta_create_probe()
2637 fasttrap_tpoints.fth_table = kmem_zalloc(fasttrap_tpoints.fth_nent * in fasttrap_attach()
2656 fasttrap_provs.fth_table = kmem_zalloc(fasttrap_provs.fth_nent * in fasttrap_attach()
2675 fasttrap_procs.fth_table = kmem_zalloc(fasttrap_procs.fth_nent * in fasttrap_attach()
2791 fasttrap_retired_spec = kmem_zalloc(fasttrap_retired_size * sizeof(*fasttrap_retired_spec), in fasttrap_init()
H A Ddtrace.c7819 dtrace_hash_t *hash = kmem_zalloc(sizeof (dtrace_hash_t), KM_SLEEP); in dtrace_hash_create()
7829 hash->dth_tab = kmem_zalloc(hash->dth_size * in dtrace_hash_create()
7867 new_tab = kmem_zalloc(new_size * sizeof (void *), KM_SLEEP); in dtrace_hash_resize()
7907 bucket = kmem_zalloc(sizeof (dtrace_hashbucket_t), KM_SLEEP); in dtrace_hash_add()
8055 s = kmem_zalloc(sizeof(dtrace_string_t) + bufsize, KM_SLEEP); in dtrace_strref()
8691 provider = kmem_zalloc(sizeof (dtrace_provider_t), KM_SLEEP); in dtrace_register()
9086 probes = kmem_zalloc(nsize, KM_SLEEP); in dtrace_probe_create()
9566 meta = kmem_zalloc(sizeof (dtrace_meta_t), KM_SLEEP); in dtrace_meta_register()
10561 tlocals = kmem_zalloc(nsz, KM_SLEEP); in dtrace_difo_init()
10612 statics = kmem_zalloc(newsize, KM_SLEEP); in dtrace_difo_init()
[all …]
H A Dprofile_prvd.c282 prof = kmem_zalloc(sizeof(profile_probe_t), KM_SLEEP); in profile_create()
284 prof = kmem_zalloc(sizeof(profile_probe_t) + NCPU * sizeof(profile_probe_percpu_t), KM_SLEEP); in profile_create()
H A Dsdt.c127 sdp = kmem_zalloc(sizeof(sdt_probe_t), KM_SLEEP); in __sdt_provide_module()
341 kmem_zalloc(sdt_probetab_size * sizeof(sdt_probe_t *), KM_SLEEP); in sdt_attach()
H A Dsystrace.c372 *interposed = ssysent = kmem_zalloc(sizeof(systrace_sysent_t) * in systrace_init()
744 *interposed = msysent = kmem_zalloc(sizeof(machtrace_sysent_t) * in machtrace_init()
H A Dlockprof.c142 lockprof_probe_t *probe = kmem_zalloc(sizeof(lockprof_probe_t), KM_SLEEP); in probe_create()
H A Dfbt.c553 kmem_zalloc(fbt_probetab_size * sizeof(fbt_probe_t *), KM_SLEEP); in fbt_attach()
/xnu-8792.81.2/bsd/dev/arm64/
H A Dfbt_arm.c333 newfbt = kmem_zalloc(sizeof(fbt_probe_t), KM_SLEEP); in fbt_provide_probe()
479 newfbt = kmem_zalloc(sizeof(fbt_probe_t), KM_SLEEP); in fbt_provide_probe()
/xnu-8792.81.2/bsd/dev/i386/
H A Dfbt_x86.c337 newfbt = kmem_zalloc(sizeof (fbt_probe_t), KM_SLEEP); in fbt_provide_probe()
497 newfbt = kmem_zalloc(sizeof (fbt_probe_t), KM_SLEEP); in fbt_provide_probe()
/xnu-8792.81.2/bsd/sys/
H A Ddtrace_glue.h388 #define kmem_zalloc(size, kmflag) \ macro