/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
|
/ndk/ |
ndk-gdb | 2 $(dirname $(readlink -f $0))/ndk-gdb.py $@
|
ndk-gdb.cmd | 5 "%PREBUILT_BIN%/python.exe" -u "%~dp0ndk-gdb" %*
|
/build/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/gdb/darwin-x86/share/gdb/python/gdb/command/ |
prompt.py | 17 """GDB command for working with extended prompts.""" 19 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)
|
frame_filters.py | 17 """GDB commands for working with frame-filters.""" 20 import gdb namespace 22 from gdb.FrameIterator import FrameIterator 23 from gdb.FrameDecorator import FrameDecorator 24 import gdb.frames namespace 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 namespace 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 namespace 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...] |
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...] |
/prebuilts/gdb/linux-x86/share/gdb/python/gdb/command/ |
prompt.py | 17 """GDB command for working with extended prompts.""" 19 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)
|
frame_filters.py | 17 """GDB commands for working with frame-filters.""" 20 import gdb namespace 22 from gdb.FrameIterator import FrameIterator 23 from gdb.FrameDecorator import FrameDecorator 24 import gdb.frames namespace 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 namespace 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 namespace 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/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...] |
/external/skia/platform_tools/android/bin/ |
android_gdb_native | 27 # Set up gdb commands 28 GDBSETUP=$GDB_TMP_DIR/gdb.setup 46 # Launch gdb client 47 echo "Entering gdb client shell" 48 GDB_COMMAND=$(command ls "$ANDROID_TOOLCHAIN"/*-gdb | head -n1)
|