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

Method ReadUInt32

view/sharedcache/core/VirtualMemory.cpp:103–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101}
102
103uint32_t VirtualMemory::ReadUInt32(uint64_t address)
104{
105 uint64_t offset;
106 auto region = GetRegionAtAddress(address, offset);
107 if (!region.has_value())
108 throw UnmappedRegionException(address);
109 return region->fileAccessor.lock()->ReadUInt32(offset);
110}
111
112int32_t VirtualMemory::ReadInt32(uint64_t address)
113{

Callers 4

Read32Method · 0.45
ParseHeaderForAddressMethod · 0.45
ReadEntryInfoMethod · 0.45
FromFileMethod · 0.45

Calls 2

lockMethod · 0.45

Tested by

no test coverage detected