Lines Matching refs:profsym

48 profrec_t	*profsym;  variable
77 if ((p = conv_demangle_name(profsym[i].name)) == NULL) in setup_demangled_names()
96 profsym[i].demangled_name = nbp; in setup_demangled_names()
167 qsort(profsym, total_funcs, sizeof (profrec_t), sort_func); in print_profile_data()
179 if (i && (strcmp(profsym[i].demangled_name, in print_profile_data()
180 profsym[i-1].demangled_name) == 0)) { in print_profile_data()
181 profsym[i].print_mid = TRUE; in print_profile_data()
183 (strcmp(profsym[i].demangled_name, in print_profile_data()
184 profsym[i+1].demangled_name) == 0)) { in print_profile_data()
185 profsym[i].print_mid = TRUE; in print_profile_data()
218 if (mi != profsym[i].module) { in print_profile_data()
220 mi = profsym[i].module; in print_profile_data()
226 (void) printf("%16llx ", profsym[i].addr); in print_profile_data()
228 (void) printf("%16llo ", profsym[i].addr); in print_profile_data()
231 cumsecs += profsym[i].seconds; in print_profile_data()
232 (void) printf("%6.1f%8.2f%8.2f", profsym[i].percent_time, in print_profile_data()
233 profsym[i].seconds, cumsecs); in print_profile_data()
236 profsym[i].ncalls, profsym[i].msecs_per_call); in print_profile_data()
238 if (profsym[i].print_mid) in print_profile_data()
239 (void) printf("%d:", (profsym[i].module)->id); in print_profile_data()
241 (void) printf("%s\n", profsym[i].demangled_name); in print_profile_data()
298 pn[i].name = profsym[i].demangled_name; in check_dupnames()
299 pn[i].pfrec = &profsym[i]; in check_dupnames()
365 profsym = calloc(total_funcs, sizeof (profrec_t)); in collect_profsyms()
366 if (profsym == NULL) { in collect_profsyms()
393 profsym[ndx].addr = nl[i].value; in collect_profsyms()
394 profsym[ndx].ncalls = nl[i].ncalls; in collect_profsyms()
395 profsym[ndx].name = nl[i].name; in collect_profsyms()
396 profsym[ndx].demangled_name = nl[i].name; in collect_profsyms()
397 profsym[ndx].module = mi; in collect_profsyms()
398 profsym[ndx].print_mid = FALSE; in collect_profsyms()
399 compute_times(&nl[i], &profsym[ndx]); in collect_profsyms()