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

Class UnmappedRegionException

view/sharedcache/core/VirtualMemory.h:6–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4#include "Utility.h"
5
6class UnmappedRegionException : public std::exception
7{
8 uint64_t m_address;
9
10public:
11 explicit UnmappedRegionException(uint64_t address) : m_address(address) {}
12
13 virtual const char* what() const throw()
14 {
15 thread_local std::string message;
16 message = fmt::format("Tried to access unmapped region using address {0:x}", m_address);
17 return message.c_str();
18 }
19};
20
21// A region within the virtual memory
22struct VirtualMemoryRegion

Callers 13

WritePointerMethod · 0.85
ReadCStringMethod · 0.85
ReadUInt8Method · 0.85
ReadInt8Method · 0.85
ReadUInt16Method · 0.85
ReadInt16Method · 0.85
ReadUInt32Method · 0.85
ReadInt32Method · 0.85
ReadUInt64Method · 0.85
ReadInt64Method · 0.85
ReadBufferMethod · 0.85
ReadSpanMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected