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

Method FindRegion

deps/v8/tools/grokdump.py:918–927  ·  view source on GitHub ↗
(self, addr)

Source from the content-addressed store, hash-verified

916 return False
917
918 def FindRegion(self, addr):
919 answer = [-1, -1]
920 def is_in(reader, start, size, location):
921 if addr >= start and addr < start + size:
922 answer[0] = start
923 answer[1] = size
924 self.ForEachMemoryRegion(is_in)
925 if answer[0] == -1:
926 return None
927 return answer
928
929 def ForEachMemoryRegion(self, cb):
930 if self.memory_list64 is not None:

Callers 6

output_dataMethod · 0.80
output_wordsMethod · 0.80
output_asciiMethod · 0.80
output_disasmMethod · 0.80
output_disasm_rangeMethod · 0.80
_AnalyzeMinidumpFunction · 0.80

Calls 1

ForEachMemoryRegionMethod · 0.95

Tested by

no test coverage detected