Lines Matching refs:dph

201 dt_proc_notify(dtrace_hdl_t *dtp, dt_proc_hash_t *dph, dt_proc_t *dpr,  in dt_proc_notify()  argument
217 (void) pthread_mutex_lock(&dph->dph_lock); in dt_proc_notify()
219 dprn->dprn_next = dph->dph_notify; in dt_proc_notify()
220 dph->dph_notify = dprn; in dt_proc_notify()
222 (void) pthread_cond_broadcast(&dph->dph_cv); in dt_proc_notify()
223 (void) pthread_mutex_unlock(&dph->dph_lock); in dt_proc_notify()
467 dt_proc_hash_t *dph = dtp->dt_procs; in dt_proc_control() local
633 dt_proc_notify(dtp, dph, dpr, NULL); in dt_proc_control()
673 dt_proc_hash_t *dph = dtp->dt_procs; in dt_proc_lookup() local
675 dt_proc_t *dpr, **dpp = &dph->dph_hash[pid & (dph->dph_hashlen - 1)]; in dt_proc_lookup()
697 dt_proc_hash_t *dph = dtp->dt_procs; in dt_proc_destroy() local
759 (void) pthread_mutex_lock(&dph->dph_lock); in dt_proc_destroy()
761 npp = &dph->dph_notify; in dt_proc_destroy()
772 (void) pthread_mutex_unlock(&dph->dph_lock); in dt_proc_destroy()
779 assert(dph->dph_lrucnt != 0); in dt_proc_destroy()
780 dph->dph_lrucnt--; in dt_proc_destroy()
783 dt_list_delete(&dph->dph_lrulist, dpr); in dt_proc_destroy()
867 dt_proc_hash_t *dph = dtp->dt_procs; in dt_proc_create() local
892 dpr->dpr_hash = dph->dph_hash[dpr->dpr_pid & (dph->dph_hashlen - 1)]; in dt_proc_create()
893 dph->dph_hash[dpr->dpr_pid & (dph->dph_hashlen - 1)] = dpr; in dt_proc_create()
894 dt_list_prepend(&dph->dph_lrulist, dpr); in dt_proc_create()
905 dt_proc_hash_t *dph = dtp->dt_procs; in dt_proc_grab() local
906 uint_t h = pid & (dph->dph_hashlen - 1); in dt_proc_grab()
915 for (dpr = dph->dph_hash[h]; dpr != NULL; dpr = dpr->dpr_hash) { in dt_proc_grab()
927 dph->dph_lrucnt--; in dt_proc_grab()
932 dt_list_delete(&dph->dph_lrulist, dpr); in dt_proc_grab()
933 dt_list_prepend(&dph->dph_lrulist, dpr); in dt_proc_grab()
967 if (dph->dph_lrucnt >= dph->dph_lrulim) { in dt_proc_grab()
968 for (opr = dt_list_prev(&dph->dph_lrulist); in dt_proc_grab()
980 dph->dph_lrucnt++; in dt_proc_grab()
986 dpr->dpr_hash = dph->dph_hash[h]; in dt_proc_grab()
987 dph->dph_hash[h] = dpr; in dt_proc_grab()
988 dt_list_prepend(&dph->dph_lrulist, dpr); in dt_proc_grab()
1000 dt_proc_hash_t *dph = dtp->dt_procs; in dt_proc_release() local
1006 (!dpr->dpr_cacheable || dph->dph_lrucnt > dph->dph_lrulim)) in dt_proc_release()
1096 dt_proc_hash_t *dph = dtp->dt_procs; in dt_proc_fini() local
1100 while ((dpr = dt_list_next(&dph->dph_lrulist)) != NULL) in dt_proc_fini()
1104 dt_free(dtp, dph); in dt_proc_fini()