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

Method ReadInt16

view/sharedcache/core/VirtualMemory.cpp:94–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92}
93
94int16_t VirtualMemory::ReadInt16(uint64_t address)
95{
96 uint64_t offset;
97 auto region = GetRegionAtAddress(address, offset);
98 if (!region.has_value())
99 throw UnmappedRegionException(address);
100 return region->fileAccessor.lock()->ReadInt16(offset);
101}
102
103uint32_t VirtualMemory::ReadUInt32(uint64_t address)
104{

Callers 1

ReadS16Method · 0.45

Calls 2

lockMethod · 0.45

Tested by

no test coverage detected