(self, addr: int)
| 5189 | core.BNFreeFunctionList(funcs, count.value) |
| 5190 | |
| 5191 | def get_recent_function_at(self, addr: int) -> Optional['_function.Function']: |
| 5192 | func = core.BNGetRecentAnalysisFunctionForAddress(self.handle, addr) |
| 5193 | if func is None: |
| 5194 | return None |
| 5195 | return _function.Function(self, func) |
| 5196 | |
| 5197 | def get_basic_blocks_at(self, addr: int) -> List['basicblock.BasicBlock']: |
| 5198 | """ |