Analyze a single file using analyzer script. Args: full_file_path (str): full path to the specific (*.obj / *.o) file is_windows (bool): True iff a windows compilation (*.obj or *.o)
(full_file_path, is_windows)
| 46 | yield os.path.abspath(os.path.join(root, file)), file |
| 47 | |
| 48 | def analyzeFile(full_file_path, is_windows): |
| 49 | """Analyze a single file using analyzer script. |
| 50 | |
| 51 | Args: |
| 52 | full_file_path (str): full path to the specific (*.obj / *.o) file |
| 53 | is_windows (bool): True iff a windows compilation (*.obj or *.o) |
| 54 | """ |
| 55 | database_path = disas_cmd.createDatabase(full_file_path, is_windows) |
| 56 | disas_cmd.executeScript(database_path, SCRIPT_PATH) |
| 57 | |
| 58 | def resolveUnknowns(): |
| 59 | """Resolve "unknown" references between the different compiled files.""" |
no test coverage detected