MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / ReadInt32

Method ReadInt32

view/sharedcache/core/VirtualMemory.cpp:112–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110}
111
112int32_t VirtualMemory::ReadInt32(uint64_t address)
113{
114 uint64_t offset;
115 auto region = GetRegionAtAddress(address, offset);
116 if (!region.has_value())
117 throw UnmappedRegionException(address);
118 return region->fileAccessor.lock()->ReadInt32(offset);
119}
120
121uint64_t VirtualMemory::ReadUInt64(uint64_t address)
122{

Callers 1

ReadS32Method · 0.45

Calls 2

lockMethod · 0.45

Tested by

no test coverage detected