HomeSort by relevance Sort by last modified time
    Searched refs:gdb (Results 1 - 25 of 175) sorted by null

1 2 3 4 5 6 7

  /external/valgrind/gdbserver_tests/
nlgone_abrt.stderrB.exp 1 relaying data between gdb and process ....
nlgone_exit.stderrB.exp 1 relaying data between gdb and process ....
nlgone_return.stderrB.exp 1 relaying data between gdb and process ....
nlself_invalidate.stderrB.exp 1 relaying data between gdb and process ....
mcmain_pic.stderrB.exp 1 relaying data between gdb and process ....
nlpasssigalrm.stderrB.exp 1 relaying data between gdb and process ....
make_local_links 6 # so that tests needing gdb can be disabled if
7 # a too old version of gdb is provided or if no gdb is
10 # The vgdb link is needed either for gdb tests
23 echo "usage: make_local_links /path/to/gdb" 1>&2
28 export GDB=""
33 # $1 = Major.Minor gdb version needed
55 echo "$@" "suppressed as $GDB version" $GDBVERSIONLINE "is <" $NEEDED
62 GDB=$1
63 ln -f -s "$GDB" gdbserver_tests/gd
    [all...]
mcinfcallRU.stderr.exp 3 pid .... Thread .... inferior call pushed from gdb in mcinfcallRU.stdinB.gdb
  /build/make/core/
process_wrapper_gdb.sh 7 # of a gdb session to allow for debugging.
15 # inside of gdb, giving gdb an initial command script to
17 gdb -q -x $2/process_wrapper_gdb.cmds --args "$@"
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/command/
prompt.py 17 """GDB command for working with extended prompts."""
19 import gdb
20 import gdb.prompt
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 newprompt = gdb.prompt.substitute_prompt(self.value)
type_printers.py 18 import gdb
20 """GDB commands for working with type-printers."""
22 class InfoTypePrinter(gdb.Command):
23 """GDB command to list all registered type-printers.
30 gdb.COMMAND_DATA)
46 """GDB calls this to perform the command."""
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
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/command/
prompt.py 17 """GDB command for working with extended prompts."""
19 import gdb
20 import gdb.prompt
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 newprompt = gdb.prompt.substitute_prompt(self.value)
type_printers.py 18 import gdb
20 """GDB commands for working with type-printers."""
22 class InfoTypePrinter(gdb.Command):
23 """GDB command to list all registered type-printers.
30 gdb.COMMAND_DATA)
46 """GDB calls this to perform the command."""
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
    [all...]
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/command/
prompt.py 17 """GDB command for working with extended prompts."""
19 import gdb
20 import gdb.prompt
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)
frame_filters.py 17 """GDB commands for working with frame-filters."""
20 import gdb
22 from gdb.FrameIterator import FrameIterator
23 from gdb.FrameDecorator import FrameDecorator
24 import gdb.frames
27 # GDB Commands.
28 class SetFilterPrefixCmd(gdb.Command):
33 gdb.COMMAND_OBSCURE,
34 gdb.COMPLETE_NONE, True)
36 class ShowFilterPrefixCmd(gdb.Command)
    [all...]
type_printers.py 18 import gdb
20 """GDB commands for working with type-printers."""
22 class InfoTypePrinter(gdb.Command):
23 """GDB command to list all registered type-printers.
30 gdb.COMMAND_DATA)
46 """GDB calls this to perform the command."""
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
    [all...]
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
unwinder.py 18 import gdb
42 """GDB calls this method to unwind a frame.
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)
    [all...]
  /prebuilts/gdb/darwin-x86/share/gdb/system-gdbinit/
wrs-linux.py 16 """Configure GDB using the WRS/Linux environment."""
21 gdb.execute('set sysroot %s' % os.environ['ENV_PREFIX'])
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/command/
prompt.py 17 """GDB command for working with extended prompts."""
19 import gdb
20 import gdb.prompt
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)
frame_filters.py 17 """GDB commands for working with frame-filters."""
20 import gdb
22 from gdb.FrameIterator import FrameIterator
23 from gdb.FrameDecorator import FrameDecorator
24 import gdb.frames
27 # GDB Commands.
28 class SetFilterPrefixCmd(gdb.Command):
33 gdb.COMMAND_OBSCURE,
34 gdb.COMPLETE_NONE, True)
36 class ShowFilterPrefixCmd(gdb.Command)
    [all...]
type_printers.py 18 import gdb
20 """GDB commands for working with type-printers."""
22 class InfoTypePrinter(gdb.Command):
23 """GDB command to list all registered type-printers.
30 gdb.COMMAND_DATA)
46 """GDB calls this to perform the command."""
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
    [all...]
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
unwinder.py 18 import gdb
42 """GDB calls this method to unwind a frame.
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)
    [all...]
  /prebuilts/gdb/linux-x86/share/gdb/system-gdbinit/
wrs-linux.py 16 """Configure GDB using the WRS/Linux environment."""
21 gdb.execute('set sysroot %s' % os.environ['ENV_PREFIX'])
  /prebuilts/go/darwin-x86/src/runtime/
runtime-gdb.py 5 """GDB Pretty printers and convenience functions for Go's runtime structures.
7 This script is loaded by GDB when it finds a .debug_gdb_scripts
14 # 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
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
runtime-gdb.py 5 """GDB Pretty printers and convenience functions for Go's runtime structures.
7 This script is loaded by GDB when it finds a .debug_gdb_scripts
14 # 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
    [all...]

Completed in 181 milliseconds

1 2 3 4 5 6 7