| 79 | }; |
| 80 | |
| 81 | class ProcessAnalyzer : public Analyzer |
| 82 | { |
| 83 | public: |
| 84 | // Constructors |
| 85 | explicit ProcessAnalyzer(pid_t pid); |
| 86 | |
| 87 | // Destructors |
| 88 | virtual ~ProcessAnalyzer() = default; |
| 89 | |
| 90 | // Methods |
| 91 | const dwfl_unique_ptr& getDwfl() const override; |
| 92 | |
| 93 | // Data members |
| 94 | dwfl_unique_ptr d_dwfl; |
| 95 | char* d_debuginfo_path; |
| 96 | Dwfl_Callbacks d_callbacks; |
| 97 | int d_pid; |
| 98 | }; |
| 99 | |
| 100 | uintptr_t |
| 101 | getLoadPointOfModule(const dwfl_unique_ptr& dwfl, const std::string& mod); |
nothing calls this directly
no outgoing calls
no test coverage detected