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

Method Create

view/pe/peview.cpp:3031–3042  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3029
3030
3031Ref<BinaryView> PEViewType::Create(BinaryView* data)
3032{
3033 try
3034 {
3035 return new PEView(data);
3036 }
3037 catch (std::exception& e)
3038 {
3039 m_logger->LogError("%s<BinaryViewType> failed to create view! '%s'", GetName().c_str(), e.what());
3040 return nullptr;
3041 }
3042}
3043
3044
3045Ref<BinaryView> PEViewType::Parse(BinaryView* data)

Callers

nothing calls this directly

Calls 3

LogErrorMethod · 0.80
c_strMethod · 0.80
whatMethod · 0.45

Tested by

no test coverage detected