(self)
| 135 | return False |
| 136 | |
| 137 | def startFullAnalysis(self): |
| 138 | Settings().set_string("analysis.mode", "full", self.data) |
| 139 | for f in self.data.functions: |
| 140 | if f.analysis_skipped: |
| 141 | f.reanalyze() |
| 142 | self.data.update_analysis() |
| 143 | self.fullAnalysisButton.hide() |
| 144 | |
| 145 | def navigateToFileOffset(self, offset): |
| 146 | if self.byteView is None: |
nothing calls this directly
no test coverage detected