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

Method GetValidList

plugin.cpp:469–479  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

467
468
469vector<PluginCommand> PluginCommand::GetValidList(const PluginCommandContext& ctxt)
470{
471 vector<PluginCommand> commands = GetList();
472 vector<PluginCommand> result;
473 for (auto& i : commands)
474 {
475 if (i.IsValid(ctxt))
476 result.push_back(i);
477 }
478 return result;
479}
480
481
482bool PluginCommand::IsValid(const PluginCommandContext& ctxt) const

Callers

nothing calls this directly

Calls 2

push_backMethod · 0.80
IsValidMethod · 0.45

Tested by

no test coverage detected