(self, crash_id, memoryMap)
| 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): |