Searched defs:Symbol (Results 1 - 4 of 4) sorted by relevance

/system/extras/perfprofd/
H A Dsymbolizer.cc35 struct Symbol { struct in struct:perfprofd::__anon1888::SimpleperfSymbolizer
39 using SymbolMap = std::map<uint64_t, Symbol>;
71 Symbol symbol;
/system/extras/simpleperf/
H A Ddso.h31 struct Symbol { struct
36 Symbol(const std::string& name, uint64_t addr, uint64_t len);
53 static bool CompareByDumpId(const Symbol* s1, const Symbol* s2) {
61 static bool CompareByAddr(const Symbol* s1, const Symbol* s2) {
65 static bool CompareValueByAddr(const Symbol& s1, const Symbol& s2) {
132 uint32_t CreateSymbolDumpId(const Symbol* symbol);
138 const Symbol* FindSymbo
[all...]
H A Ddso.cpp36 Symbol::Symbol(const std::string& name, uint64_t addr, uint64_t len) function in class:Symbol
43 const char* Symbol::DemangledName() const {
207 uint32_t Dso::CreateSymbolDumpId(const Symbol* symbol) {
213 const Symbol* Dso::FindSymbol(uint64_t vaddr_in_dso) {
219 Symbol("", vaddr_in_dso, 0),
220 Symbol::CompareValueByAddr);
237 const std::vector<Symbol>& Dso::GetSymbols() {
244 void Dso::SetSymbols(std::vector<Symbol>* symbols) {
250 unknown_symbols_.insert(std::make_pair(vaddr_in_dso, Symbol(nam
[all...]
/system/extras/simpleperf/runtest/
H A Druntest.py56 class Symbol(object): class in inherits:object
72 strs.append('Symbol name=%s comm=%s overhead=%f children_overhead=%f' % (
401 assert re.search(r'^Children\s+Self\s+Command.+Symbol$', title_line)
403 assert re.search(r'^Overhead\s+Command.+Symbol$', title_line)
426 cur_symbol = Symbol(symbol_name, comm, overhead, children_overhead)
434 cur_symbol = Symbol(symbol_name, comm, overhead, 0)
508 print "Symbol (%s) doesn't match requirement (%s) in test %s" % (
523 print "Symbol (%s) doesn't match requirement (%s) in test %s" % (
543 print "Symbol (%s) doesn't match requirement (%s) in test %s" % (

Completed in 174 milliseconds