MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / get_debugee_pids

Method get_debugee_pids

pydevd_attach_to_process/winappdbg/debug.py:1118–1123  ·  view source on GitHub ↗

@rtype: list( int... ) @return: Global IDs of processes being debugged.

(self)

Source from the content-addressed store, hash-verified

1116 return len(self.__attachedDebugees) + len(self.__startedDebugees)
1117
1118 def get_debugee_pids(self):
1119 """
1120 @rtype: list( int... )
1121 @return: Global IDs of processes being debugged.
1122 """
1123 return list(self.__attachedDebugees) + list(self.__startedDebugees)
1124
1125 def is_debugee(self, dwProcessId):
1126 """

Callers 10

kill_allMethod · 0.95
detach_from_allMethod · 0.95
do_processlistMethod · 0.80
do_threadlistMethod · 0.80
do_killMethod · 0.80
do_breakMethod · 0.80
do_blMethod · 0.80
loopMethod · 0.80
start_tracing_allMethod · 0.80
stop_tracing_allMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected