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

Method Read16

view/pe/coffview.cpp:1438–1444  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1436
1437
1438uint16_t COFFView::Read16(uint64_t rva)
1439{
1440 uint64_t ofs = RVAToFileOffset(rva);
1441 BinaryReader reader(GetParentView(), LittleEndian);
1442 reader.Seek(ofs);
1443 return reader.Read16();
1444}
1445
1446
1447uint32_t COFFView::Read32(uint64_t rva)

Callers 1

InitMethod · 0.45

Calls 1

SeekMethod · 0.45

Tested by

no test coverage detected