Result of binary structure analysis.
| 73 | |
| 74 | @dataclass(slots=True) |
| 75 | class BinaryAnalysis: |
| 76 | """Result of binary structure analysis.""" |
| 77 | |
| 78 | platform: str |
| 79 | size: int |
| 80 | header: bytes |
| 81 | esp32: Esp32Header | None = None |
| 82 | format: str | None = None |
| 83 | |
| 84 | |
| 85 | def _analyze_binary_structure(bin_file: Path, platform: str) -> BinaryAnalysis: |
no outgoing calls
no test coverage detected