Home | History | Annotate | Download | only in valgrind

Lines Matching refs:symbols

51   """ Demangle a list of C++ symbols, return a list of human-readable symbols.
65 """Extract all symbols from a suppression report."""
66 symbols = []
72 symbols.append(line[index + prefix_len:])
73 return symbols
76 """Print the |top_count| symbols with the most occurrences."""
81 symbols = symbol_reports.keys()
82 demangled = Demangle(symbols)
83 assert len(demangled) == len(symbols)
84 symboltable = dict(zip(symbols, demangled))
87 print "Top %d symbols" % top_count
101 parser.add_argument('--top-symbols', type=int, default=0,
102 help='Print a list of the top <n> symbols')
144 # Skip reports if none of the symbols are in the report.
160 symbols = GetSymbolsFromReport(r)
161 for symbol in symbols: