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

Method get_entry_point

pydevd_attach_to_process/winappdbg/module.py:269–277  ·  view source on GitHub ↗

@rtype: int or None @return: Entry point of the module. Returns C{None} if unknown.

(self)

Source from the content-addressed store, hash-verified

267 return self.SizeOfImage
268
269 def get_entry_point(self):
270 """
271 @rtype: int or None
272 @return: Entry point of the module.
273 Returns C{None} if unknown.
274 """
275 if not self.EntryPoint:
276 self.__get_size_and_entry_point()
277 return self.EntryPoint
278
279 def __get_size_and_entry_point(self):
280 "Get the size and entry point of the module using the Win32 API."

Callers 4

get_label_at_addressMethod · 0.95
resolve_labelMethod · 0.95

Calls 1

Tested by

no test coverage detected