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

Method __add_memory

pydevd_attach_to_process/winappdbg/sql.py:804–810  ·  view source on GitHub ↗
(self, crash_id, memoryMap)

Source from the content-addressed store, hash-verified

802
803 # Store the memory dump into the memory table.
804 def __add_memory(self, crash_id, memoryMap):
805 session = self._session
806 if memoryMap:
807 for mbi in memoryMap:
808 r_mem = MemoryDTO(crash_id, mbi)
809 session.add(r_mem)
810 session.flush()
811
812 @Transactional
813 def find(self, signature=None, order=0, since=None, until=None, offset=None, limit=None):

Callers 1

addMethod · 0.95

Calls 3

MemoryDTOClass · 0.85
addMethod · 0.45
flushMethod · 0.45

Tested by

no test coverage detected