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

Method ReadUInt64

view/sharedcache/core/VirtualMemory.cpp:121–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

119}
120
121uint64_t VirtualMemory::ReadUInt64(uint64_t address)
122{
123 uint64_t offset;
124 auto region = GetRegionAtAddress(address, offset);
125 if (!region.has_value())
126 throw UnmappedRegionException(address);
127 return region->fileAccessor.lock()->ReadUInt64(offset);
128}
129
130int64_t VirtualMemory::ReadInt64(uint64_t address)
131{

Callers 5

Read64Method · 0.45
ParseHeaderForAddressMethod · 0.45
ApplySlideInfoV5Function · 0.45
ApplySlideInfoV3Function · 0.45
ApplySlideInfoV2Function · 0.45

Calls 2

lockMethod · 0.45

Tested by

no test coverage detected