/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/lib64/ |
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 ())
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/lib/ |
libstdc++.a-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-w64-mingw32-4.8/x86_64-w64-mingw32/lib32/ |
libstdc++.a-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/gdb/linux-x86/bin/ |
gcore | 20 # It starts up gdb, attaches to the given PID and invokes the gcore command. 73 # Check if the GDB binary is in the expected path. If not, just 75 if [ ! -f "$binary_path"/gdb ]; then 76 echo "gcore: GDB binary (${binary_path}/gdb) not found" 87 # available but not accessible as GDB would get stopped on SIGTTIN. 88 $binary_path/gdb </dev/null --nx --batch \
|
/prebuilts/gdb/darwin-x86/share/gdb/python/gdb/command/ |
explore.py | 0 # GDB 'explore' command. 17 """Implementation of the GDB 'explore' command using the GDB Python API.""" 19 import gdb namespace 33 gdb.TYPE_CODE_CHAR, 34 gdb.TYPE_CODE_INT, 35 gdb.TYPE_CODE_BOOL, 36 gdb.TYPE_CODE_FLT, 37 gdb.TYPE_CODE_VOID, 38 gdb.TYPE_CODE_ENUM [all...] |
/prebuilts/gdb/linux-x86/share/gdb/python/gdb/command/ |
explore.py | 0 # GDB 'explore' command. 17 """Implementation of the GDB 'explore' command using the GDB Python API.""" 19 import gdb namespace 33 gdb.TYPE_CODE_CHAR, 34 gdb.TYPE_CODE_INT, 35 gdb.TYPE_CODE_BOOL, 36 gdb.TYPE_CODE_FLT, 37 gdb.TYPE_CODE_VOID, 38 gdb.TYPE_CODE_ENUM [all...] |
/prebuilts/gdb/darwin-x86/share/gdb/python/gdb/ |
FrameDecorator.py | 16 import gdb namespace 39 If the result of frame filters running means we have one gdb.Frame 46 -- (wraps) gdb.Frame 56 # 'base' can refer to a gdb.Frame or another frame decorator. In 70 or frame.type() == gdb.DUMMY_FRAME 71 or frame.type() == gdb.SIGTRAMP_FRAME): 88 special frame. If not, try to determine filename from GDB's 91 address, GDB will attempt to determine the function name from 95 # Both gdb.Frame, and FrameDecorator have a method called 97 if not isinstance(self._base, gdb.Frame) [all...] |
prompt.py | 19 import gdb namespace 27 """Internal worker for fetching GDB attributes.""" 32 except gdb.error: 44 return _prompt_object_attr(gdb.selected_frame, 'frame', attr, 'name') 48 return _prompt_object_attr(gdb.selected_thread, 'thread', attr, 'num') 51 "The version of GDB." 52 return gdb.VERSION 72 return gdb.parameter(attr)
|
FrameIterator.py | 16 import gdb namespace 20 """A gdb.Frame iterator. Iterates over gdb.Frames or objects that
|
printing.py | 19 import gdb namespace 20 import gdb.types namespace 34 it is defined (objfile, progspace, or global(gdb)), and should 121 if obj is None or obj is gdb: 122 if gdb.parameter("verbose"): 123 gdb.write("Registering global %s pretty-printer ...\n" % name) 124 obj = gdb 126 if gdb.parameter("verbose"): 127 gdb.write("Registering %s pretty-printer for %s ...\n" % ( 143 # PERF: gdb records printers in a list, making this inefficient [all...] |
xmethod.py | 19 import gdb namespace 54 When looking for xmethods, GDB invokes the `match' method of a 66 enable/disable/list the xmethods registered with GDB. See 91 class_type: The class type (gdb.Type object) to match. 101 invokes the method when GDB wants it to. Internally, GDB first invokes the 102 'get_arg_types' method to perform overload resolution. If GDB selects to 114 A sequence of gdb.Type objects corresponding to the arguments of the 117 argument, then a gdb.Type object or a sequence with a single gdb.Typ [all...] |
/prebuilts/gdb/linux-x86/share/gdb/python/gdb/ |
FrameDecorator.py | 16 import gdb namespace 39 If the result of frame filters running means we have one gdb.Frame 46 -- (wraps) gdb.Frame 56 # 'base' can refer to a gdb.Frame or another frame decorator. In 70 or frame.type() == gdb.DUMMY_FRAME 71 or frame.type() == gdb.SIGTRAMP_FRAME): 88 special frame. If not, try to determine filename from GDB's 91 address, GDB will attempt to determine the function name from 95 # Both gdb.Frame, and FrameDecorator have a method called 97 if not isinstance(self._base, gdb.Frame) [all...] |
prompt.py | 19 import gdb namespace 27 """Internal worker for fetching GDB attributes.""" 32 except gdb.error: 44 return _prompt_object_attr(gdb.selected_frame, 'frame', attr, 'name') 48 return _prompt_object_attr(gdb.selected_thread, 'thread', attr, 'num') 51 "The version of GDB." 52 return gdb.VERSION 72 return gdb.parameter(attr)
|
FrameIterator.py | 16 import gdb namespace 20 """A gdb.Frame iterator. Iterates over gdb.Frames or objects that
|
printing.py | 19 import gdb namespace 20 import gdb.types namespace 34 it is defined (objfile, progspace, or global(gdb)), and should 121 if obj is None or obj is gdb: 122 if gdb.parameter("verbose"): 123 gdb.write("Registering global %s pretty-printer ...\n" % name) 124 obj = gdb 126 if gdb.parameter("verbose"): 127 gdb.write("Registering %s pretty-printer for %s ...\n" % ( 143 # PERF: gdb records printers in a list, making this inefficient [all...] |
xmethod.py | 19 import gdb namespace 54 When looking for xmethods, GDB invokes the `match' method of a 66 enable/disable/list the xmethods registered with GDB. See 91 class_type: The class type (gdb.Type object) to match. 101 invokes the method when GDB wants it to. Internally, GDB first invokes the 102 'get_arg_types' method to perform overload resolution. If GDB selects to 114 A sequence of gdb.Type objects corresponding to the arguments of the 117 argument, then a gdb.Type object or a sequence with a single gdb.Typ [all...] |
/external/valgrind/gdbserver_tests/ |
mcbreak.stdout.exp | 5 pid .... Thread .... after next: inferior call pushed from mcbreak.stdinB.gdb
|
nlsigvgdb.stderrB.exp | 1 relaying data between gdb and process ....
|
mcinfcallWSRU.stderrB.exp | 1 relaying data between gdb and process .... 28 gdb commands changing registers (pc, sp, ...) (e.g. 'jump', 29 set pc, calling from gdb a function in the debugged process, ...) 37 gdb commands changing registers (pc, sp, ...) (e.g. 'jump', 38 set pc, calling from gdb a function in the debugged process, ...) 46 gdb commands changing registers (pc, sp, ...) (e.g. 'jump', 47 set pc, calling from gdb a function in the debugged process, ...)
|
mcbreak.stderrB.exp | 1 relaying data between gdb and process ....
|
/development/scripts/ |
gdbclient | 135 local GDB 138 GDB=$ANDROID_BUILD_TOP/prebuilts/gdb/darwin-x86/bin/gdb 142 GDB=$ANDROID_BUILD_TOP/prebuilts/gdb/linux-x86/bin/gdb 186 local DALVIK_GDB_SCRIPT=$ROOT/development/scripts/gdb/dalvik.gdb 200 gdbwrapper $GDB "$OUT_ROOT/gdbclient.cmds" "$LOCAL_EXE_PATH [all...] |
/frameworks/compile/libbcc/gdb_plugin/ |
android-commands.py | 18 # GDB plugin to allow debugging of apps on remote Android systems using gdbserver. 20 # To use this plugin, source this file from a Python-enabled GDB client, then use: 21 # load-android-app <app-source-dir> to tell GDB about the app you are debugging 28 import gdb namespace 43 # DebugAppInfo - App configuration struct, as far as GDB cares 44 # StartAndroidApp - Implementation of GDB start (for android apps) 45 # RunAndroidApp - Implementation of GDB run (for android apps) 46 # AttachAndroidApp - GDB command to attach to an existing android app process 109 raise gdb.GdbError("Unable to read ANDROID_BUILD_TOP. " \ 152 raise gdb.GdbError("Error starting background adb " + str(largs) [all...] |
/external/strace/test/ |
Makefile | 18 rm -f *.o core $(PROGS) *.gdb
|
/external/skia/platform_tools/android/bin/ |
android_gdb_app | 55 # Set up gdb commands 56 GDBSETUP=$GDB_TMP_DIR/gdb.setup 62 # Launch gdb client 63 echo "Entering gdb client shell" 64 GDB_COMMAND=$(command ls "$ANDROID_TOOLCHAIN"/*-gdb | head -n1)
|
/external/eigen/debug/gdb/ |
printers.py | 12 # This is still pretty basic as the python extension to gdb is still pretty basic. 29 import gdb namespace 43 # The gdb extension does not support value template arguments - need to extract them by hand 45 if type.code == gdb.TYPE_CODE_REF: 76 if self.data.type.code == gdb.TYPE_CODE_STRUCT: 134 # The gdb extension does not support value template arguments - need to extract them by hand 136 if type.code == gdb.TYPE_CODE_REF: 183 obj = gdb 191 if type.code == gdb.TYPE_CODE_REF:
|