MCPcopy Create free account
hub / github.com/beefytech/Beef / GetInlineDepth

Method GetInlineDepth

IDEHelper/Backend/BeModule.cpp:902–912  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

900}
901
902int BeDbgLoc::GetInlineDepth()
903{
904 int inlineDepth = 0;
905 auto checkDbgLoc = mDbgInlinedAt;
906 while (checkDbgLoc != NULL)
907 {
908 inlineDepth++;
909 checkDbgLoc = checkDbgLoc->mDbgInlinedAt;
910 }
911 return inlineDepth;
912}
913
914int BeDbgLoc::GetInlineMatchDepth(BeDbgLoc* other)
915{

Callers 4

DisassembleAtMethod · 0.45
GetInlineMatchDepthMethod · 0.45
DbgGenerateModuleInfoMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected