Lines Matching +full:re +full:- +full:enabled
6 # Copyright (c) Siemens AG, 2011-2013
16 import re
37 # Disable pagination while reporting symbol (re-)loading.
58 """(Re-)load symbols of Linux kernel and currently loaded modules.
63 lx-symbols command."""
72 super(LxSymbols, self).__init__("lx-symbols", gdb.COMMAND_FILES,
87 module_name.replace("_", r"[_\-]"))
89 if re.match(module_pattern, name) and os.path.exists(name):
114 args.append(" -s {name} {addr}".format(
137 cmdline = "add-symbol-file {filename} {sections}".format(
154 saved_states.append({'breakpoint': bp, 'enabled': bp.enabled})
162 gdb.execute("symbol-file", to_string=True)
163 gdb.execute("symbol-file {0}".format(orig_vmlinux))
173 saved_state['breakpoint'].enabled = saved_state['enabled']