MCPcopy Create free account
hub / github.com/SIPp/sipp / getName

Method getName

src/variables.cpp:338–347  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

336}
337
338char *AllocVariableTable::getName(int i)
339{
340 int thisLevel = i & ((1 << LEVEL_BITS) - 1);
341 assert(thisLevel <= level);
342 if (thisLevel == level) {
343 return variableRevMap[i];
344 }
345 assert(av_parent);
346 return av_parent->getName(i);
347}
348
349void AllocVariableTable::dump()
350{

Callers 4

printInfoMethod · 0.80
runMethod · 0.80
executeActionMethod · 0.80
draw_scenario_screenMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected