diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2021-05-12 14:47:30 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2021-05-12 14:47:30 -0400 |
| commit | 52363cfce06f1d571f101374c93bfc9ca0781819 (patch) | |
| tree | 7a3c43e285c9aaa779dd8e6db0226053f2ead3ba /python | |
| parent | a6092bdc5025a87bfc1df175a1930bd274e2bf15 (diff) | |
adding list of current debug reports to request_debug_report documentation
Diffstat (limited to 'python')
| -rw-r--r-- | python/function.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/python/function.py b/python/function.py index c6c8e205..cb8a869c 100644 --- a/python/function.py +++ b/python/function.py @@ -3277,6 +3277,17 @@ class Function(object): self.clear_user_var_value(var, def_site.addr) def request_debug_report(self, name): + """ + ``request_debug_report`` can generate interanl debug reports for a variety of analysis. + Current list of possible values include: + + - mlil_translator + - stack_adjust_graph + - high_level_il + + :param str name: Name of the debug report + :rtype: None + """ core.BNRequestFunctionDebugReport(self.handle, name) self.view.update_analysis() |
