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

Method ReadInt64

view/sharedcache/core/VirtualMemory.cpp:130–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

128}
129
130int64_t VirtualMemory::ReadInt64(uint64_t address)
131{
132 uint64_t offset;
133 auto region = GetRegionAtAddress(address, offset);
134 if (!region.has_value())
135 throw UnmappedRegionException(address);
136 return region->fileAccessor.lock()->ReadInt64(offset);
137}
138
139BinaryNinja::DataBuffer VirtualMemory::ReadBuffer(uint64_t address, size_t length)
140{

Callers 1

ReadS64Method · 0.45

Calls 2

lockMethod · 0.45

Tested by

no test coverage detected