Searched refs:gdb (Results 1 - 25 of 77) sorted by relevance

1234

/prebuilts/gdb/darwin-x86/share/gdb/system-gdbinit/
H A Dwrs-linux.py21 gdb.execute('set sysroot %s' % os.environ['ENV_PREFIX'])
/prebuilts/gdb/linux-x86/share/gdb/system-gdbinit/
H A Dwrs-linux.py21 gdb.execute('set sysroot %s' % os.environ['ENV_PREFIX'])
/prebuilts/gdb/darwin-x86/share/gdb/python/gdb/command/
H A Dprompt.py19 import gdb namespace
20 import gdb.prompt namespace
22 class _ExtendedPrompt(gdb.Parameter):
35 __doc__ = __doc__ + gdb.prompt.prompt_help()
42 gdb.COMMAND_SUPPORT,
43 gdb.PARAM_STRING_NOESCAPE)
55 gdb.prompt_hook = self.before_prompt_hook
61 return gdb.prompt.substitute_prompt(self.value)
H A Dtype_printers.py18 import gdb namespace
22 class InfoTypePrinter(gdb.Command):
30 gdb.COMMAND_DATA)
48 for objfile in gdb.objfiles():
53 if gdb.current_progspace().type_printers:
55 self.list_type_printers(gdb.current_progspace().type_printers)
57 if gdb.type_printers:
59 self.list_type_printers(gdb.type_printers)
61 class _EnableOrDisableCommand(gdb.Command):
63 super(_EnableOrDisableCommand, self).__init__(name, gdb
[all...]
H A Dframe_filters.py20 import gdb namespace
22 from gdb.FrameIterator import FrameIterator
23 from gdb.FrameDecorator import FrameDecorator
24 import gdb.frames namespace
28 class SetFilterPrefixCmd(gdb.Command):
33 gdb.COMMAND_OBSCURE,
34 gdb.COMPLETE_NONE, True)
36 class ShowFilterPrefixCmd(gdb.Command):
40 gdb.COMMAND_OBSCURE,
41 gdb
[all...]
H A Dunwinders.py17 import gdb namespace
42 argv = gdb.string_to_argv(arg)
56 class InfoUnwinder(gdb.Command):
74 gdb.COMMAND_STACK)
95 self.list_unwinders("Global:", gdb.frame_unwinders,
98 cp = gdb.current_progspace()
101 for objfile in gdb.objfiles():
131 total += do_enable_unwinder1(gdb.frame_unwinders, name_re, flag)
133 total += do_enable_unwinder1(gdb.current_progspace().frame_unwinders,
135 for objfile in gdb
[all...]
/prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
H A Dunwinder.py18 import gdb namespace
45 pending_frame: gdb.PendingFrame instance.
48 gdb.UnwindInfo instance.
62 unwinder: An object of a gdb.Unwinder subclass
75 if gdb.parameter("verbose"):
76 gdb.write("Registering global %s unwinder ...\n" % unwinder.name)
77 locus = gdb
78 elif isinstance(locus, gdb.Objfile) or isinstance(locus, gdb.Progspace):
79 if gdb
[all...]
H A Dtypes.py17 """Utilities for working with gdb.Types."""
19 import gdb namespace
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
47 It must be one of gdb.TYPE_CODE_STRUCT, gdb.TYPE_CODE_UNION.
58 if (type_.code != gdb.TYPE_CODE_STRUCT and
59 type_.code != gdb.TYPE_CODE_UNION):
85 if enum_type.code != gdb
[all...]
H A Dframes.py19 import gdb namespace
20 from gdb.FrameIterator import FrameIterator
21 from gdb.FrameDecorator import FrameDecorator
104 gdb.GdbError: A dictionary of that name cannot be found.
113 glob = gdb.frame_filters.values()
114 prog = gdb.current_progspace().frame_filters.values()
116 for objfile in gdb.objfiles():
122 return gdb.frame_filters
125 cp = gdb.current_progspace()
128 for objfile in gdb
[all...]
/prebuilts/gdb/linux-x86/share/gdb/python/gdb/command/
H A Dprompt.py19 import gdb namespace
20 import gdb.prompt namespace
22 class _ExtendedPrompt(gdb.Parameter):
35 __doc__ = __doc__ + gdb.prompt.prompt_help()
42 gdb.COMMAND_SUPPORT,
43 gdb.PARAM_STRING_NOESCAPE)
55 gdb.prompt_hook = self.before_prompt_hook
61 return gdb.prompt.substitute_prompt(self.value)
H A Dtype_printers.py18 import gdb namespace
22 class InfoTypePrinter(gdb.Command):
30 gdb.COMMAND_DATA)
48 for objfile in gdb.objfiles():
53 if gdb.current_progspace().type_printers:
55 self.list_type_printers(gdb.current_progspace().type_printers)
57 if gdb.type_printers:
59 self.list_type_printers(gdb.type_printers)
61 class _EnableOrDisableCommand(gdb.Command):
63 super(_EnableOrDisableCommand, self).__init__(name, gdb
[all...]
H A Dframe_filters.py20 import gdb namespace
22 from gdb.FrameIterator import FrameIterator
23 from gdb.FrameDecorator import FrameDecorator
24 import gdb.frames namespace
28 class SetFilterPrefixCmd(gdb.Command):
33 gdb.COMMAND_OBSCURE,
34 gdb.COMPLETE_NONE, True)
36 class ShowFilterPrefixCmd(gdb.Command):
40 gdb.COMMAND_OBSCURE,
41 gdb
[all...]
H A Dunwinders.py17 import gdb namespace
42 argv = gdb.string_to_argv(arg)
56 class InfoUnwinder(gdb.Command):
74 gdb.COMMAND_STACK)
95 self.list_unwinders("Global:", gdb.frame_unwinders,
98 cp = gdb.current_progspace()
101 for objfile in gdb.objfiles():
131 total += do_enable_unwinder1(gdb.frame_unwinders, name_re, flag)
133 total += do_enable_unwinder1(gdb.current_progspace().frame_unwinders,
135 for objfile in gdb
[all...]
/prebuilts/gdb/linux-x86/share/gdb/python/gdb/
H A Dunwinder.py18 import gdb namespace
45 pending_frame: gdb.PendingFrame instance.
48 gdb.UnwindInfo instance.
62 unwinder: An object of a gdb.Unwinder subclass
75 if gdb.parameter("verbose"):
76 gdb.write("Registering global %s unwinder ...\n" % unwinder.name)
77 locus = gdb
78 elif isinstance(locus, gdb.Objfile) or isinstance(locus, gdb.Progspace):
79 if gdb
[all...]
H A Dtypes.py17 """Utilities for working with gdb.Types."""
19 import gdb namespace
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
47 It must be one of gdb.TYPE_CODE_STRUCT, gdb.TYPE_CODE_UNION.
58 if (type_.code != gdb.TYPE_CODE_STRUCT and
59 type_.code != gdb.TYPE_CODE_UNION):
85 if enum_type.code != gdb
[all...]
H A Dframes.py19 import gdb namespace
20 from gdb.FrameIterator import FrameIterator
21 from gdb.FrameDecorator import FrameDecorator
104 gdb.GdbError: A dictionary of that name cannot be found.
113 glob = gdb.frame_filters.values()
114 prog = gdb.current_progspace().frame_filters.values()
116 for objfile in gdb.objfiles():
122 return gdb.frame_filters
125 cp = gdb.current_progspace()
128 for objfile in gdb
[all...]
/prebuilts/go/darwin-x86/src/runtime/
H A Druntime-gdb.py14 # foo string' will make foo a plain struct in the eyes of gdb,
27 goobjfile = gdb.current_objfile() or gdb.objfiles()[0]
101 Map-typed go variables are really pointers. dereference them in gdb
152 Chan-typed go variables are really pointers. dereference them in gdb
198 # fields to python attributes in gdb.py isn't complete: you can't test
205 except gdb.error:
212 except gdb.error:
218 return gdb.lookup_type(name)
219 except gdb
[all...]
/prebuilts/go/linux-x86/src/runtime/
H A Druntime-gdb.py14 # foo string' will make foo a plain struct in the eyes of gdb,
27 goobjfile = gdb.current_objfile() or gdb.objfiles()[0]
101 Map-typed go variables are really pointers. dereference them in gdb
152 Chan-typed go variables are really pointers. dereference them in gdb
198 # fields to python attributes in gdb.py isn't complete: you can't test
205 except gdb.error:
212 except gdb.error:
218 return gdb.lookup_type(name)
219 except gdb
[all...]
/prebuilts/gdb/darwin-x86/share/gdb/python/gdb/function/
H A Dcaller_is.py17 import gdb namespace
20 class CallerIs(gdb.Function):
45 frame = gdb.selected_frame()
53 class CallerMatches(gdb.Function):
78 frame = gdb.selected_frame()
86 class AnyCallerIs(gdb.Function):
111 frame = gdb.selected_frame()
121 class AnyCallerMatches(gdb.Function):
146 frame = gdb.selected_frame()
/prebuilts/gdb/linux-x86/share/gdb/python/gdb/function/
H A Dcaller_is.py17 import gdb namespace
20 class CallerIs(gdb.Function):
45 frame = gdb.selected_frame()
53 class CallerMatches(gdb.Function):
78 frame = gdb.selected_frame()
86 class AnyCallerIs(gdb.Function):
111 frame = gdb.selected_frame()
121 class AnyCallerMatches(gdb.Function):
146 frame = gdb.selected_frame()
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/lib32/
H A Dlibstdc++.so.6.0.19-gdb.py18 import gdb namespace
29 if gdb.current_objfile () is not None:
52 objfile = gdb.current_objfile ().filename
60 register_libstdcxx_printers (gdb.current_objfile ())
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/lib64/
H A Dlibstdc++.so.6.0.19-gdb.py18 import gdb namespace
29 if gdb.current_objfile () is not None:
52 objfile = gdb.current_objfile ().filename
60 register_libstdcxx_printers (gdb.current_objfile ())
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/lib/
H A Dlibstdc++.a-gdb.py18 import gdb namespace
29 if gdb.current_objfile () is not None:
52 objfile = gdb.current_objfile ().filename
60 register_libstdcxx_printers (gdb.current_objfile ())
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/lib32/
H A Dlibstdc++.a-gdb.py18 import gdb namespace
29 if gdb.current_objfile () is not None:
52 objfile = gdb.current_objfile ().filename
60 register_libstdcxx_printers (gdb.current_objfile ())
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/lib64/
H A Dlibstdc++.a-gdb.py18 import gdb namespace
29 if gdb.current_objfile () is not None:
52 objfile = gdb.current_objfile ().filename
60 register_libstdcxx_printers (gdb.current_objfile ())

Completed in 560 milliseconds

1234