``update_analysis`` asynchronously starts the analysis process and returns immediately. **Usage**: Call ``update_analysis`` after making changes that could affect the analysis results, such as adding or modifying functions. This ensures that the analysis is updated to reflect the latest ch
(self)
| 4913 | core.BNSetFunctionAnalysisUpdateDisabled(self.handle, disabled) |
| 4914 | |
| 4915 | def update_analysis(self) -> None: |
| 4916 | """ |
| 4917 | ``update_analysis`` asynchronously starts the analysis process and returns immediately. |
| 4918 | |
| 4919 | **Usage**: |
| 4920 | Call ``update_analysis`` after making changes that could affect the analysis results, such as adding or modifying |
| 4921 | functions. This ensures that the analysis is updated to reflect the latest changes. The analysis runs in the background, |
| 4922 | allowing other operations to continue. |
| 4923 | |
| 4924 | :rtype: None |
| 4925 | """ |
| 4926 | core.BNUpdateAnalysis(self.handle) |
| 4927 | |
| 4928 | def update_analysis_and_wait(self) -> None: |
| 4929 | """ |
no outgoing calls
no test coverage detected