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

Method get_size

pydevd_attach_to_process/winappdbg/module.py:259–267  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

257 return self.lpBaseOfDll
258
259 def get_size(self):
260 """
261 @rtype: int or None
262 @return: Base size of the module.
263 Returns C{None} if unknown.
264 """
265 if not self.SizeOfImage:
266 self.__get_size_and_entry_point()
267 return self.SizeOfImage
268
269 def get_entry_point(self):
270 """

Callers 2

load_symbolsMethod · 0.95
is_address_hereMethod · 0.95

Calls 1

Tested by

no test coverage detected