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

Method invoke

deps/v8/tools/gdb-v8-support.py:185–195  ·  view source on GitHub ↗
(self, value, from_tty)

Source from the content-addressed store, hash-verified

183 pass
184
185 def invoke(self, value, from_tty):
186 for l in gdb.execute("maint info sections", to_string=True).split('\n'):
187 m = FindAnywhere.MAPPING_RE.match(l)
188 if m is None:
189 continue
190 self.find(m.group(1), m.group(2), value)
191 for l in gdb.execute("info proc mappings", to_string=True).split('\n'):
192 m = FindAnywhere.LIVE_MAPPING_RE.match(l)
193 if m is None:
194 continue
195 self.find(m.group(1), m.group(2), value)
196
197
198FindAnywhere()

Callers

nothing calls this directly

Calls 4

findMethod · 0.95
matchMethod · 0.65
splitMethod · 0.45
executeMethod · 0.45

Tested by

no test coverage detected