Lines Matching defs:DfxSymbol
27 struct DfxSymbol {
49 DfxSymbol(uint64_t vaddr, uint64_t size, const std::string &name, const std::string &demangle,
57 DfxSymbol(uint64_t vaddr, uint64_t size, const std::string &name, const std::string &module)
58 : DfxSymbol(vaddr, size, name, name, module) {}
61 DfxSymbol(uint64_t vaddr, const std::string &name, const std::string &module)
62 : DfxSymbol(vaddr, 0, name, name, module) {}
65 DfxSymbol(uint64_t taskVaddr = 0, const std::string &comm = "")
68 DfxSymbol(const DfxSymbol &other) = default;
70 DfxSymbol& operator=(const DfxSymbol& other) = default;
72 inline bool Equal(const DfxSymbol &b) const
77 inline bool operator==(const DfxSymbol &b) const
82 inline bool operator!=(const DfxSymbol &b) const
169 static bool ValueLessThen(uint64_t vaddr, const DfxSymbol &a)
174 static bool ValueLessEqual(uint64_t vaddr, const DfxSymbol &a)