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

Method ReadUInt8

view/sharedcache/core/VirtualMemory.cpp:67–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65}
66
67uint8_t VirtualMemory::ReadUInt8(uint64_t address)
68{
69 uint64_t offset;
70 auto region = GetRegionAtAddress(address, offset);
71 if (!region.has_value())
72 throw UnmappedRegionException(address);
73 return region->fileAccessor.lock()->ReadUInt8(offset);
74}
75
76int8_t VirtualMemory::ReadInt8(uint64_t address)
77{

Callers 1

Read8Method · 0.45

Calls 2

lockMethod · 0.45

Tested by

no test coverage detected