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

Method Read32

view/pe/coffview.cpp:1447–1453  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1445
1446
1447uint32_t COFFView::Read32(uint64_t rva)
1448{
1449 uint64_t ofs = RVAToFileOffset(rva);
1450 BinaryReader reader(GetParentView(), LittleEndian);
1451 reader.Seek(ofs);
1452 return reader.Read32();
1453}
1454
1455
1456uint64_t COFFView::Read64(uint64_t rva)

Callers 1

InitMethod · 0.45

Calls 1

SeekMethod · 0.45

Tested by

no test coverage detected