| 46 | } |
| 47 | |
| 48 | CacheRegion RegionFromApi(BNSharedCacheRegion apiRegion) |
| 49 | { |
| 50 | CacheRegion region {}; |
| 51 | region.start = apiRegion.vmAddress; |
| 52 | region.name = apiRegion.name; |
| 53 | region.size = apiRegion.size; |
| 54 | region.flags = apiRegion.flags; |
| 55 | region.type = apiRegion.regionType; |
| 56 | return region; |
| 57 | } |
| 58 | |
| 59 | BNSharedCacheMappingInfo MappingToApi(const CacheMappingInfo &mapping) |
| 60 | { |
no outgoing calls
no test coverage detected