HomeSort by relevance Sort by last modified time
    Searched refs:gdb (Results 26 - 50 of 135) sorted by null

12 3 4 5 6

  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
types.py 17 """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.TYPE_CODE_ENUM
    [all...]
frames.py 19 import gdb namespace
20 from gdb.FrameIterator import FrameIterator
21 from gdb.FrameDecorator import FrameDecorator
97 name: The name of the list, as specified by GDB user commands.
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(
    [all...]
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/printer/
bound_registers.py 17 import gdb.printing namespace
34 gdb.printing.add_builtin_pretty_printer ('mpx_bound128',
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/printer/
bound_registers.py 17 import gdb.printing namespace
34 gdb.printing.add_builtin_pretty_printer ('mpx_bound128',
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
frames.py 19 import gdb namespace
20 from gdb.FrameIterator import FrameIterator
21 from gdb.FrameDecorator import FrameDecorator
97 name: The name of the list, as specified by GDB user commands.
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(
    [all...]
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/command/
unwinders.py 17 import gdb namespace
42 argv = gdb.string_to_argv(arg)
56 class InfoUnwinder(gdb.Command):
57 """GDB command to list unwinders.
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
    [all...]
xmethods.py 17 import gdb namespace
20 """GDB commands for working with xmethods."""
41 argv = gdb.string_to_argv(arg)
81 [m for m in gdb.xmethods if matcher_re.match(m.name)])
104 if isinstance(locus, gdb.Progspace):
168 [gdb.current_progspace()], locus_re, matcher_re),
172 get_method_matchers_in_loci(gdb.objfiles(), locus_re, matcher_re),
177 class InfoXMethod(gdb.Command):
178 """GDB command to list registered xmethod matchers.
198 gdb.COMMAND_DATA
    [all...]
pretty_printers.py 17 """GDB commands for working with pretty-printers."""
20 import gdb namespace
41 argv = gdb.string_to_argv(arg);
84 class InfoPrettyPrinter(gdb.Command):
85 """GDB command to list all registered pretty-printers.
100 gdb.COMMAND_DATA)
153 """GDB calls this to perform the command."""
155 self.invoke1("global pretty-printers:", gdb.pretty_printers,
157 cp = gdb.current_progspace()
161 for objfile in gdb.objfiles()
    [all...]
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/command/
unwinders.py 17 import gdb namespace
42 argv = gdb.string_to_argv(arg)
56 class InfoUnwinder(gdb.Command):
57 """GDB command to list unwinders.
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
    [all...]
xmethods.py 17 import gdb namespace
20 """GDB commands for working with xmethods."""
41 argv = gdb.string_to_argv(arg)
81 [m for m in gdb.xmethods if matcher_re.match(m.name)])
104 if isinstance(locus, gdb.Progspace):
168 [gdb.current_progspace()], locus_re, matcher_re),
172 get_method_matchers_in_loci(gdb.objfiles(), locus_re, matcher_re),
177 class InfoXMethod(gdb.Command):
178 """GDB command to list registered xmethod matchers.
198 gdb.COMMAND_DATA
    [all...]
pretty_printers.py 17 """GDB commands for working with pretty-printers."""
20 import gdb namespace
41 argv = gdb.string_to_argv(arg);
84 class InfoPrettyPrinter(gdb.Command):
85 """GDB command to list all registered pretty-printers.
100 gdb.COMMAND_DATA)
153 """GDB calls this to perform the command."""
155 self.invoke1("global pretty-printers:", gdb.pretty_printers,
157 cp = gdb.current_progspace()
161 for objfile in gdb.objfiles()
    [all...]
  /external/autotest/client/site_tests/security_ptraceRestrictions/src/
ptrace-restrictions.sh 39 OUT=$(gdb -ex run -ex quit --batch ./sleeper </dev/null 2>&1)
50 OUT=$(gdb -ex "attach $pid" -ex "quit" --batch </dev/null 2>&1)
67 OUT=$(gdb -ex "attach 1" -ex "quit" --batch </dev/null 2>&1)
89 OUT=$(gdb -ex "attach $pid" -ex "quit" --batch </dev/null 2>&1)
101 OUT=$(gdb -ex "attach $pid" -ex "quit" --batch </dev/null 2>&1)
113 OUT=$(gdb -ex "attach $pid" -ex "quit" --batch </dev/null 2>&1)
125 OUT=$(gdb -ex "attach $pid" -ex "quit" --batch </dev/null 2>&1)
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/function/
caller_is.py 17 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()
strfns.py 1 # Useful gdb string convenience functions.
19 import gdb namespace
23 class _MemEq(gdb.Function):
41 byte_vector = gdb.lookup_type("char").vector(length - 1)
48 class _StrLen(gdb.Function):
65 class _StrEq(gdb.Function):
85 class _RegEx(gdb.Function):
104 # GDB will import us automagically via gdb/__init__.py.
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/function/
caller_is.py 17 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()
strfns.py 1 # Useful gdb string convenience functions.
19 import gdb namespace
23 class _MemEq(gdb.Function):
41 byte_vector = gdb.lookup_type("char").vector(length - 1)
48 class _StrLen(gdb.Function):
65 class _StrEq(gdb.Function):
85 class _RegEx(gdb.Function):
104 # GDB will import us automagically via gdb/__init__.py.
  /external/v8/tools/
gdb-v8-support.py 60 t_u32 = gdb.lookup_type('unsigned int')
61 t_u64 = gdb.lookup_type('unsigned long long')
131 gdb.pretty_printers.append(v8_pretty_printers)
144 v = gdb.parse_and_eval(vstring)
148 class V8PrintObject (gdb.Command):
151 super (V8PrintObject, self).__init__ ("v8print", gdb.COMMAND_DATA)
154 gdb.execute('call __gdb_print_v8_object(%d)' % v)
158 class FindAnywhere (gdb.Command):
163 super (FindAnywhere, self).__init__ ("find-anywhere", gdb.COMMAND_DATA)
166 result = gdb.execute
    [all...]
  /prebuilts/gdb/darwin-x86/share/gdb/system-gdbinit/
elinos.py 16 """Configure GDB using the ELinOS environment."""
20 import gdb namespace
75 gdb.execute("set solib-absolute-prefix %s" % solib_prefix)
87 gdb.execute("set solib-search-path %s" % ":".join(solib_dirs))
  /prebuilts/gdb/linux-x86/share/gdb/system-gdbinit/
elinos.py 16 """Configure GDB using the ELinOS environment."""
20 import gdb namespace
75 gdb.execute("set solib-absolute-prefix %s" % solib_prefix)
87 gdb.execute("set solib-search-path %s" % ":".join(solib_dirs))
  /external/valgrind/gdbserver_tests/
mcclean_after_fork.stderrB.exp 1 relaying data between gdb and process ....
mcmain_pic.stdout.exp 2 another func called msg called from gdb
mcinfcallWSRU.stderr.exp 6 pid .... Thread .... thread 1 inferior call pushed from gdb in mcinfcallWSRU.stdinB.gdb
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/lib32/
libstdc++.so.6.0.18-gdb.py 18 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.11-4.8/x86_64-linux/lib64/
libstdc++.so.6.0.18-gdb.py 18 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/lib32/
libstdc++.so.6.0.19-gdb.py 18 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 973 milliseconds

12 3 4 5 6