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)
| 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 | """ |
no test coverage detected