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

Method get_process

pydevd_attach_to_process/winappdbg/thread.py:172–182  ·  view source on GitHub ↗

@rtype: L{Process} @return: Parent Process object. Returns C{None} if unknown.

(self)

Source from the content-addressed store, hash-verified

170 from winappdbg.process import Process
171
172 def get_process(self):
173 """
174 @rtype: L{Process}
175 @return: Parent Process object.
176 Returns C{None} if unknown.
177 """
178 if self.__process is not None:
179 return self.__process
180 self.__load_Process_class()
181 self.__process = Process(self.get_pid())
182 return self.__process
183
184 def set_process(self, process=None):
185 """

Callers 15

get_pidMethod · 0.95
killMethod · 0.95
get_windowsMethod · 0.95
is_wow64Method · 0.95
get_archMethod · 0.95
get_bitsMethod · 0.95
get_tebMethod · 0.95
get_label_at_pcMethod · 0.95
get_seh_chain_pointerMethod · 0.95
set_seh_chain_pointerMethod · 0.95
get_seh_chainMethod · 0.95
__get_stack_traceMethod · 0.95

Calls 3

__load_Process_classMethod · 0.95
get_pidMethod · 0.95
ProcessClass · 0.90

Tested by

no test coverage detected