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

Method ForEachMemoryRegion

deps/v8/tools/grokdump.py:929–938  ·  view source on GitHub ↗
(self, cb)

Source from the content-addressed store, hash-verified

927 return answer
928
929 def ForEachMemoryRegion(self, cb):
930 if self.memory_list64 is not None:
931 for r in self.memory_list64.ranges:
932 location = self.memory_list64.base_rva + offset
933 cb(self, r.start, r.size, location)
934 offset += r.size
935
936 if self.memory_list is not None:
937 for r in self.memory_list.ranges:
938 cb(self, r.start, r.memory.data_size, r.memory.rva)
939
940 def FindWord(self, word, alignment=0):
941 def search_inside_region(reader, start, size, location):

Callers 7

FindRegionMethod · 0.95
FindWordMethod · 0.95
FindWordListMethod · 0.95
FullDumpFunction · 0.80
FindObjectPointersMethod · 0.80
output_address_rangesMethod · 0.80
do_listMethod · 0.80

Calls 1

cbFunction · 0.50

Tested by

no test coverage detected