MCPcopy Index your code
hub / github.com/nodejs/node / _UniqueMmapName

Method _UniqueMmapName

deps/v8/tools/profiling/ll_prof.py:797–804  ·  view source on GitHub ↗
(self, mmap_info)

Source from the content-addressed store, hash-verified

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):

Callers 1

LoadMethod · 0.95

Calls 1

addMethod · 0.65

Tested by

no test coverage detected