Home
last modified time | relevance | path

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

/xnu-8020.140.41/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.c7796 dtrace_hash_t *hash = kmem_zalloc(sizeof (dtrace_hash_t), KM_SLEEP); in dtrace_hash_create()
7806 hash->dth_tab = kmem_zalloc(hash->dth_size * in dtrace_hash_create()
7844 new_tab = kmem_zalloc(new_size * sizeof (void *), KM_SLEEP); in dtrace_hash_resize()
7884 bucket = kmem_zalloc(sizeof (dtrace_hashbucket_t), KM_SLEEP); in dtrace_hash_add()
8032 s = kmem_zalloc(sizeof(dtrace_string_t) + bufsize, KM_SLEEP); in dtrace_strref()
8668 provider = kmem_zalloc(sizeof (dtrace_provider_t), KM_SLEEP); in dtrace_register()
9063 probes = kmem_zalloc(nsize, KM_SLEEP); in dtrace_probe_create()
9543 meta = kmem_zalloc(sizeof (dtrace_meta_t), KM_SLEEP); in dtrace_meta_register()
10538 tlocals = kmem_zalloc(nsz, KM_SLEEP); in dtrace_difo_init()
10589 statics = kmem_zalloc(newsize, KM_SLEEP); in dtrace_difo_init()
[all …]
H A Dprofile_prvd.c323 prof = kmem_zalloc(sizeof(profile_probe_t), KM_SLEEP); in profile_create()
325 prof = kmem_zalloc(sizeof(profile_probe_t) + NCPU * sizeof(profile_probe_percpu_t), KM_SLEEP); in profile_create()
H A Dsdt.c133 sdp = kmem_zalloc(sizeof(sdt_probe_t), KM_SLEEP); in __sdt_provide_module()
347 kmem_zalloc(sdt_probetab_size * sizeof(sdt_probe_t *), KM_SLEEP); in sdt_attach()
H A Dlockprof.c150 lockprof_probe_t *probe = kmem_zalloc(sizeof(lockprof_probe_t), KM_SLEEP); in probe_create()
H A Dsystrace.c389 *interposed = ssysent = kmem_zalloc(sizeof(systrace_sysent_t) * in systrace_init()
769 *interposed = msysent = kmem_zalloc(sizeof(machtrace_sysent_t) * in machtrace_init()
H A Dfbt.c560 kmem_zalloc(fbt_probetab_size * sizeof(fbt_probe_t *), KM_SLEEP); in fbt_attach()
/xnu-8020.140.41/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-8020.140.41/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-8020.140.41/bsd/dev/arm/
H A Dfbt_arm.c385 newfbt = kmem_zalloc(sizeof(fbt_probe_t), KM_SLEEP); in fbt_provide_probe()
567 newfbt = kmem_zalloc(sizeof(fbt_probe_t), KM_SLEEP); in fbt_provide_probe()
/xnu-8020.140.41/bsd/sys/
H A Ddtrace_glue.h388 #define kmem_zalloc(size, kmflag) \ macro