Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Ddso.h59 struct Symbol { struct
64 Symbol(std::string_view name, uint64_t addr, uint64_t len); argument
80 static bool CompareByDumpId(const Symbol* s1, const Symbol* s2) { in CompareByDumpId() argument
88 static bool CompareByAddr(const Symbol* s1, const Symbol* s2) { return s1->addr < s2->addr; } in CompareByAddr() argument
90 static bool CompareValueByAddr(const Symbol& s1, const Symbol& s2) { return s1.addr < s2.addr; } in CompareValueByAddr() argument
94 mutable const char* demangled_name_;
95 mutable uint32_t dump_id_;
119 // SymbolDir is used to add a directory containing files with symbols. Each file under it will argument
Dcmd_record_test.cpp348 const std::function<bool(const Symbol&, uint32_t)>& callback) { in ProcessSymbolsInPerfDataFile()
365 auto callback = [&](const Symbol&, uint32_t) { in CheckDumpedSymbols()
401 auto callback = [&](const Symbol&, uint32_t file_type) { in TEST()
Ddso.cpp209 Symbol::Symbol(std::string_view name, uint64_t addr, uint64_t len) in Symbol() function in simpleperf::Symbol
/system/extras/simpleperf/runtest/
Druntest.py56 class Symbol(object): class