(self, mmap_info)
| 795 | return False |
| 796 | |
| 797 | def _UniqueMmapName(self, mmap_info): |
| 798 | name = mmap_info.filename |
| 799 | index = 1 |
| 800 | while name in self.names: |
| 801 | name = "%s-%d" % (mmap_info.filename, index) |
| 802 | index += 1 |
| 803 | self.names.add(name) |
| 804 | return name |
| 805 | |
| 806 | def _LoadKernelSymbols(self, code_map): |
| 807 | if not os.path.exists(KERNEL_ALLSYMS_FILE): |