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

Function isProcStopped

lldb_commands/ds.py:61–70  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

59 return target
60
61def 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
72def getSectionName(section):
73 name = section.name

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…