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

Method ReadUInt16

view/sharedcache/core/VirtualMemory.cpp:85–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85uint16_t VirtualMemory::ReadUInt16(uint64_t address)
86{
87 uint64_t offset;
88 auto region = GetRegionAtAddress(address, offset);
89 if (!region.has_value())
90 throw UnmappedRegionException(address);
91 return region->fileAccessor.lock()->ReadUInt16(offset);
92}
93
94int16_t VirtualMemory::ReadInt16(uint64_t address)
95{

Callers 4

Read16Method · 0.45
ApplySlideInfoV5Function · 0.45
ApplySlideInfoV3Function · 0.45
ApplySlideInfoV2Function · 0.45

Calls 2

lockMethod · 0.45

Tested by

no test coverage detected