Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Ddso.h65 struct Symbol { struct
70 Symbol(std::string_view name, uint64_t addr, uint64_t len); argument
88 static bool CompareByDumpId(const Symbol* s1, const Symbol* s2) { in CompareByDumpId() argument
96 static bool CompareByAddr(const Symbol* s1, const Symbol* s2) { return s1->addr < s2->addr; } in CompareByAddr() argument
98 static bool CompareValueByAddr(const Symbol& s1, const Symbol& s2) { return s1.addr < s2.addr; } in CompareValueByAddr() argument
102 mutable const char* demangled_name_;
103 mutable uint32_t dump_id_;
127 // SymbolDir is used to add a directory containing files with symbols. Each file under it will argument
Drecord_file.proto38 message Symbol { message
Dcmd_record_test.cpp397 const std::function<bool(const Symbol&, uint32_t)>& callback) { in ProcessSymbolsInPerfDataFile()
416 auto callback = [&](const Symbol&, uint32_t) { in CheckDumpedSymbols()
454 auto callback = [&](const Symbol&, uint32_t file_type) { in TEST()
Ddso.cpp269 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