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

Function pframework

lldb_commands/ds.py:133–143  ·  view source on GitHub ↗
(debugger, command, exe_ctx, result, internal_dict)

Source from the content-addressed store, hash-verified

131 result.AppendMessage('Content copied to clipboard...')
132
133def pframework(debugger, command, exe_ctx, result, internal_dict):
134 target = getTarget()
135 res = lldb.SBCommandReturnObject()
136 debugger = lldb.debugger
137 interpreter = debugger.GetCommandInterpreter()
138 module = target.module[command]
139 if not module:
140 result.SetError("Couldn't find module: {}".format(command))
141 return
142
143 result.AppendMessage("\"" + module.file.fullpath + "\"")
144
145def formatFromData(data, section, outputCount=0):
146 name = getSectionName(section)

Callers

nothing calls this directly

Calls 1

getTargetFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…