Searched defs:Symbol (Results 1 – 5 of 5) sorted by relevance
/system/extras/simpleperf/ |
D | dso.h | 59 struct Symbol { struct 64 Symbol(std::string_view name, uint64_t addr, uint64_t len); argument 82 static bool CompareByDumpId(const Symbol* s1, const Symbol* s2) { in CompareByDumpId() argument 90 static bool CompareByAddr(const Symbol* s1, const Symbol* s2) { return s1->addr < s2->addr; } in CompareByAddr() argument 92 static bool CompareValueByAddr(const Symbol& s1, const Symbol& s2) { return s1.addr < s2.addr; } in CompareValueByAddr() argument 96 mutable const char* demangled_name_; 97 mutable uint32_t dump_id_; 121 // SymbolDir is used to add a directory containing files with symbols. Each file under it will argument
|
D | record_file.proto | 38 message Symbol { message
|
D | cmd_record_test.cpp | 348 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()
|
D | dso.cpp | 212 Symbol::Symbol(std::string_view name, uint64_t addr, uint64_t len) in Symbol() function in simpleperf::Symbol
|
/system/extras/simpleperf/runtest/ |
D | runtest.py | 56 class Symbol(object): class
|