MCPcopy
hub / github.com/DerekSelander/LLDB / getSectionName

Function getSectionName

lldb_commands/ds.py:72–78  ·  view source on GitHub ↗
(section)

Source from the content-addressed store, hash-verified

70 return False
71
72def getSectionName(section):
73 name = section.name
74 parent = section.GetParent()
75 while parent:
76 name = parent.name + '.' + name
77 parent = parent.GetParent()
78 return name
79
80def getSection(module=None, name=None):
81 if module is None:

Callers 1

formatFromDataFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…