Home
last modified time | relevance | path

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

/xnu-11215/bsd/dev/dtrace/
H A Dfasttrap.c181 static fasttrap_hash_t fasttrap_provs; variable
203 ((fasttrap_hash_str(name) + (pid)) & fasttrap_provs.fth_mask)
340 for (i = 0; i < fasttrap_provs.fth_nent; i++) { in fasttrap_pid_cleanup_providers()
341 bucket = &fasttrap_provs.fth_table[i]; in fasttrap_pid_cleanup_providers()
2655 fasttrap_provs.fth_nent = nent; in fasttrap_attach()
2657 fasttrap_provs.fth_nent = 1 << fasttrap_highbit(nent); in fasttrap_attach()
2658 ASSERT(fasttrap_provs.fth_nent > 0); in fasttrap_attach()
2659 fasttrap_provs.fth_mask = fasttrap_provs.fth_nent - 1; in fasttrap_attach()
2660 fasttrap_provs.fth_table = kmem_zalloc(fasttrap_provs.fth_nent * in fasttrap_attach()
2662 ASSERT(fasttrap_provs.fth_table != NULL); in fasttrap_attach()
[all …]