This is a struct so cython can convert easily from this
| 56 | |
| 57 | // This is a struct so cython can convert easily from this |
| 58 | struct CoreVirtualMap |
| 59 | { |
| 60 | // Data members |
| 61 | uintptr_t start; |
| 62 | uintptr_t end; |
| 63 | unsigned long filesize; |
| 64 | std::string flags; |
| 65 | unsigned long offset; |
| 66 | std::string device; |
| 67 | unsigned long inode; |
| 68 | std::string path; |
| 69 | std::string buildid; |
| 70 | }; |
| 71 | |
| 72 | class CoreFileExtractor |
| 73 | { |
nothing calls this directly
no outgoing calls
no test coverage detected