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

Method Read16

view/pe/peview.cpp:2894–2900  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2892
2893
2894uint16_t PEView::Read16(uint64_t rva)
2895{
2896 uint64_t ofs = RVAToFileOffset(rva);
2897 BinaryReader reader(GetParentView(), LittleEndian);
2898 reader.Seek(ofs);
2899 return reader.Read16();
2900}
2901
2902
2903uint32_t PEView::Read32(uint64_t rva)

Callers 6

ParseSymbolTableEntryMethod · 0.45
ParseHeadersMethod · 0.45
ReadTEImageHeaderMethod · 0.45
InitMethod · 0.45

Calls 1

SeekMethod · 0.45

Tested by

no test coverage detected