(debugger, command, exe_ctx, result, internal_dict)
| 131 | result.AppendMessage('Content copied to clipboard...') |
| 132 | |
| 133 | def 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 | |
| 145 | def formatFromData(data, section, outputCount=0): |
| 146 | name = getSectionName(section) |
nothing calls this directly
no test coverage detected
searching dependent graphs…