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

Method ReadInt8

view/sharedcache/core/VirtualMemory.cpp:76–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74}
75
76int8_t VirtualMemory::ReadInt8(uint64_t address)
77{
78 uint64_t offset;
79 auto region = GetRegionAtAddress(address, offset);
80 if (!region.has_value())
81 throw UnmappedRegionException(address);
82 return region->fileAccessor.lock()->ReadInt8(offset);
83}
84
85uint16_t VirtualMemory::ReadUInt16(uint64_t address)
86{

Callers 1

ReadS8Method · 0.45

Calls 2

lockMethod · 0.45

Tested by

no test coverage detected