Returns a list of ReferenceSource objects corresponding to the addresses in functions which reference this function
(&self)
| 2231 | /// Returns a list of ReferenceSource objects corresponding to the addresses |
| 2232 | /// in functions which reference this function |
| 2233 | pub fn caller_sites(&self) -> Array<CodeReference> { |
| 2234 | self.view().code_refs_to_addr(self.start()) |
| 2235 | } |
| 2236 | |
| 2237 | /// Calling convention used by the function |
| 2238 | pub fn calling_convention(&self) -> Option<Conf<Ref<CoreCallingConvention>>> { |
nothing calls this directly
no test coverage detected