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

Method ReadPointer

binaryreader.cpp:110–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108
109
110uint64_t BinaryReader::ReadPointer()
111{
112 size_t addressSize = m_view->GetAddressSize();
113 if (addressSize > 8 || addressSize == 0)
114 throw ReadException();
115
116 if (GetEndianness() == BigEndian)
117 return ReadBEPointer();
118
119 return ReadLEPointer();
120}
121
122
123uint16_t BinaryReader::ReadLE16()

Callers 10

LoadClassesMethod · 0.45
ProcessCFStringsMethod · 0.45
TypeDescriptorMethod · 0.45
ProcessVFTMethod · 0.45
GetTypeInfoFunction · 0.45
SIClassTypeInfoMethod · 0.45
BaseClassTypeInfoMethod · 0.45
ReadTypeInfoVariantFunction · 0.45
ProcessVFTMethod · 0.45

Calls 2

ReadExceptionClass · 0.85
GetAddressSizeMethod · 0.45

Tested by

no test coverage detected