Return the name of the function that was defined in the given address (including windows name fixes). Args: func_ea (int): effective address of the wanted function Return Value: The actual (wanted) name of the wanted function
(self, func_ea)
| 42 | return base_name |
| 43 | |
| 44 | def funcNameEA(self, func_ea): |
| 45 | """Return the name of the function that was defined in the given address (including windows name fixes). |
| 46 | |
| 47 | Args: |
| 48 | func_ea (int): effective address of the wanted function |
| 49 | |
| 50 | Return Value: |
| 51 | The actual (wanted) name of the wanted function |
| 52 | """ |
| 53 | func = self.disas.funcAt(func_ea) |
| 54 | if func is not None: |
| 55 | return self.funcNameInner(func.name) |
| 56 | return self.funcNameInner(self.disas.nameAt(func_ea)) |
| 57 | |
| 58 | def analyzeFunctionBlock(self, block_ea): |
| 59 | """Return pairs indicating function calls (or fptr refs) from the lines in the basic block instance. |
nothing calls this directly
no test coverage detected