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

Method BaseClassArray

plugins/rtti/microsoft.cpp:48–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46
47
48BaseClassArray::BaseClassArray(BinaryView *view, uint64_t address, uint32_t length) : length(length)
49{
50 BinaryReader reader = BinaryReader(view);
51 reader.Seek(address);
52 descriptors = {};
53 for (size_t i = 0; i < length; i++)
54 descriptors.emplace_back(reader.Read32());
55}
56
57
58TypeDescriptor::TypeDescriptor(BinaryView *view, uint64_t address)

Callers

nothing calls this directly

Calls 3

BinaryReaderClass · 0.50
SeekMethod · 0.45
Read32Method · 0.45

Tested by

no test coverage detected