()
| 59 | return target |
| 60 | |
| 61 | def isProcStopped(): |
| 62 | target = getTarget() |
| 63 | process = target.GetProcess() |
| 64 | if not process: |
| 65 | return False |
| 66 | |
| 67 | state = process.GetState() |
| 68 | if state == lldb.eStateStopped: |
| 69 | return True |
| 70 | return False |
| 71 | |
| 72 | def getSectionName(section): |
| 73 | name = section.name |
nothing calls this directly
no test coverage detected
searching dependent graphs…