(self, value, from_tty)
| 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 | |
| 198 | FindAnywhere() |