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

Method get_memory_map

pydevd_attach_to_process/winappdbg/process.py:2985–3002  ·  view source on GitHub ↗

Produces a memory map to the process address space. Optionally restrict the map to the given address range. @see: L{mquery} @type minAddr: int @param minAddr: (Optional) Starting address in address range to query. @type maxAddr: int @par

(self, minAddr=None, maxAddr=None)

Source from the content-addressed store, hash-verified

2983 return True
2984
2985 def get_memory_map(self, minAddr=None, maxAddr=None):
2986 """
2987 Produces a memory map to the process address space.
2988
2989 Optionally restrict the map to the given address range.
2990
2991 @see: L{mquery}
2992
2993 @type minAddr: int
2994 @param minAddr: (Optional) Starting address in address range to query.
2995
2996 @type maxAddr: int
2997 @param maxAddr: (Optional) Ending address in address range to query.
2998
2999 @rtype: list( L{win32.MemoryBasicInformation} )
3000 @return: List of memory region information objects.
3001 """
3002 return list(self.iter_memory_map(minAddr, maxAddr))
3003
3004 def generate_memory_map(self, minAddr=None, maxAddr=None):
3005 """

Callers 6

peekMethod · 0.95
get_mapped_filenamesMethod · 0.95
iter_memory_snapshotMethod · 0.95
find_in_memoryMethod · 0.80
do_memoryMethod · 0.80
fetch_extra_dataMethod · 0.80

Calls 1

iter_memory_mapMethod · 0.95

Tested by

no test coverage detected