``get_data_hits`` returns the number of times a pointer pointed to a data variable at the specified base address :param int base_address: base address to get data hits for :return: number of data hits for the specified base address :rtype: int
(self, base_address: int)
| 314 | return self._get_data_hits_by_type(base_address, BaseAddressDetectionPOIType.POIFunction) |
| 315 | |
| 316 | def get_data_hits(self, base_address: int) -> int: |
| 317 | """ |
| 318 | ``get_data_hits`` returns the number of times a pointer pointed to a data variable at the |
| 319 | specified base address |
| 320 | |
| 321 | :param int base_address: base address to get data hits for |
| 322 | :return: number of data hits for the specified base address |
| 323 | :rtype: int |
| 324 | """ |
| 325 | |
| 326 | return self._get_data_hits_by_type(base_address, BaseAddressDetectionPOIType.POIDataVariable) |
no test coverage detected