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

Function PrintVariable

examples/mlil_parser/src/mlil_parser.cpp:137–144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135
136
137static void PrintVariable(MediumLevelILFunction* func, const Variable& var)
138{
139 string name = func->GetFunction()->GetVariableName(var);
140 if (name.size() == 0)
141 printf("<no name>");
142 else
143 printf("%s", name.c_str());
144}
145
146
147static void PrintILExpr(const MediumLevelILInstruction& instr, size_t indent)

Callers 1

PrintILExprFunction · 0.85

Calls 4

GetVariableNameMethod · 0.80
c_strMethod · 0.80
GetFunctionMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected