HomeSort by relevance Sort by last modified time
    Searched defs:Dso (Results 1 - 2 of 2) sorted by null

  /system/extras/simpleperf/
dso.h 52 struct Dso {
60 static std::unique_ptr<Dso> CreateDso(DsoType dso_type, const std::string& dso_path = "");
62 ~Dso();
80 static bool KernelSymbolCallback(const KernelSymbol& kernel_symbol, Dso* dso);
81 static void VmlinuxSymbolCallback(const ElfFileSymbol& elf_symbol, Dso* dso);
82 static void ElfFileSymbolCallback(const ElfFileSymbol& elf_symbol, Dso* dso,
91 Dso(DsoType type, const std::string& path)
    [all...]
dso.cpp 17 #include "dso.h"
44 const std::string s = Dso::Demangle(name_);
54 bool Dso::demangle_ = true;
55 std::string Dso::symfs_dir_;
56 std::string Dso::vmlinux_;
57 std::unordered_map<std::string, BuildId> Dso::build_id_map_;
58 size_t Dso::dso_count_;
60 void Dso::SetDemangle(bool demangle) {
66 std::string Dso::Demangle(const std::string& name) {
91 bool Dso::SetSymFsDir(const std::string& symfs_dir)
    [all...]

Completed in 791 milliseconds