``callee_addressses`` returns a list of start addresses for functions that this function calls. Does not point to the actual address where the call occurs, just the start of the function that contains the reference. :return: List of start address for functions that this function calls :rty
(self)
| 3090 | |
| 3091 | @property |
| 3092 | def callee_addresses(self) -> List[int]: |
| 3093 | """ |
| 3094 | ``callee_addressses`` returns a list of start addresses for functions that this function calls. |
| 3095 | Does not point to the actual address where the call occurs, just the start of the function that contains the reference. |
| 3096 | |
| 3097 | :return: List of start address for functions that this function calls |
| 3098 | :rtype: list(int) |
| 3099 | """ |
| 3100 | result = [] |
| 3101 | for ref in self.call_sites: |
| 3102 | result.extend(self.view.get_callees(ref.address, ref.function, ref.arch)) |
| 3103 | return result |
| 3104 | |
| 3105 | @property |
| 3106 | def callers(self) -> List['Function']: |
nothing calls this directly
no test coverage detected