Home
last modified time | relevance | path

Searched defs:Symbol (Results 1 – 5 of 5) sorted by relevance

/system/extras/simpleperf/
Ddso.h57 struct Symbol { struct
62 Symbol(std::string_view name, uint64_t addr, uint64_t len); argument
79 static bool CompareByDumpId(const Symbol* s1, const Symbol* s2) { in CompareByDumpId() argument
87 static bool CompareByAddr(const Symbol* s1, const Symbol* s2) { in CompareByAddr() argument
91 static bool CompareValueByAddr(const Symbol& s1, const Symbol& s2) { in CompareValueByAddr() argument
111 struct KernelSymbol; argument
Ddso.cpp177 Symbol::Symbol(std::string_view name, uint64_t addr, uint64_t len) in Symbol() function in Symbol
/system/extras/perfprofd/
Dsymbolizer.cc37 struct Symbol { struct
38 Symbol(std::string_view n, uint64_t l) : name(n), length(l) {} in Symbol() argument
40 std::string name;
41 uint64_t length;
Dperfprofd_record.proto13 message Symbol { message
/system/extras/simpleperf/runtest/
Druntest.py56 class Symbol(object): class