MCPcopy Create free account
hub / github.com/bloomberg/pystack / ElfAnalyzerError

Class ElfAnalyzerError

src/pystack/_pystack/elf_common.h:22–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20parse_permissions(long flags);
21
22class ElfAnalyzerError : public std::exception
23{
24 public:
25 explicit ElfAnalyzerError(std::string error)
26 : d_error(std::move(error)){};
27
28 const char* what() const noexcept override
29 {
30 return d_error.c_str();
31 }
32
33 private:
34 std::string d_error;
35};
36
37// Aliases
38using dwfl_unique_ptr = std::unique_ptr<Dwfl, std::function<void(Dwfl*)>>;

Callers 5

CoreFileAnalyzerMethod · 0.85
removeModuleIfMethod · 0.85
resolveLibrariesMethod · 0.85
ProcessAnalyzerMethod · 0.85
extractExecutableMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected