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

Method IsValidForView

architecture.cpp:2630–2638  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2628
2629
2630bool FunctionViewType::IsValidForView(BinaryView* view) const
2631{
2632 if (type != HighLevelLanguageRepresentationFunctionGraph)
2633 return true;
2634 Ref<LanguageRepresentationFunctionType> type = LanguageRepresentationFunctionType::GetByName(name);
2635 if (!type)
2636 return false;
2637 return type->IsValid(view);
2638}
2639
2640
2641bool FunctionViewType::operator==(const FunctionViewType& other) const

Callers

nothing calls this directly

Calls 1

IsValidMethod · 0.45

Tested by

no test coverage detected