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

Method WritePointer

view/sharedcache/core/VirtualMemory.cpp:49–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47}
48
49void VirtualMemory::WritePointer(size_t address, size_t pointer)
50{
51 uint64_t offset;
52 auto region = GetRegionAtAddress(address, offset);
53 if (!region.has_value())
54 throw UnmappedRegionException(address);
55 region->fileAccessor.lock()->WritePointer(offset, pointer);
56}
57
58std::string VirtualMemory::ReadCString(uint64_t address)
59{

Callers 3

ApplySlideInfoV5Function · 0.45
ApplySlideInfoV3Function · 0.45
ApplySlideInfoV2Function · 0.45

Calls 2

lockMethod · 0.45

Tested by

no test coverage detected