Lines Matching refs:notes

347 	struct annotation *notes = symbol__annotation(sym);  in annotate_browser__calc_percent()  local
353 pthread_mutex_lock(&notes->lock); in annotate_browser__calc_percent()
355 list_for_each_entry(pos, &notes->src->source, node) { in annotate_browser__calc_percent()
366 next = disasm__get_next_ip_line(&notes->src->source, pos); in annotate_browser__calc_percent()
369 bpos->percent[i] = disasm__calc_percent(notes, in annotate_browser__calc_percent()
386 pthread_mutex_unlock(&notes->lock); in annotate_browser__calc_percent()
450 struct annotation *notes; in annotate_browser__callq() local
468 notes = symbol__annotation(target.sym); in annotate_browser__callq()
469 pthread_mutex_lock(&notes->lock); in annotate_browser__callq()
471 if (notes->src == NULL && symbol__alloc_hist(target.sym) < 0) { in annotate_browser__callq()
472 pthread_mutex_unlock(&notes->lock); in annotate_browser__callq()
478 pthread_mutex_unlock(&notes->lock); in annotate_browser__callq()
491 struct annotation *notes = symbol__annotation(sym); in annotate_browser__find_offset() local
495 list_for_each_entry(pos, &notes->src->source, node) { in annotate_browser__find_offset()
530 struct annotation *notes = symbol__annotation(sym); in annotate_browser__find_string() local
534 list_for_each_entry_continue(pos, &notes->src->source, node) { in annotate_browser__find_string()
569 struct annotation *notes = symbol__annotation(sym); in annotate_browser__find_string_reverse() local
573 list_for_each_entry_continue_reverse(pos, &notes->src->source, node) { in annotate_browser__find_string_reverse()
892 struct annotation *notes; in symbol__tui_annotate() local
938 notes = symbol__annotation(sym); in symbol__tui_annotate()
941 list_for_each_entry(pos, &notes->src->source, node) { in symbol__tui_annotate()
971 browser.b.entries = &notes->src->source, in symbol__tui_annotate()
980 list_for_each_entry_safe(pos, n, &notes->src->source, node) { in symbol__tui_annotate()