HomeSort by relevance Sort by last modified time
    Searched defs:gdb (Results 26 - 49 of 49) sorted by null

12

  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/
printing.py 19 import gdb namespace
20 import gdb.types namespace
34 it is defined (objfile, progspace, or global(gdb)), and should
118 if gdb.parameter("verbose"):
119 gdb.write("Registering global %s pretty-printer ...\n" % name)
120 obj = gdb
122 if gdb.parameter("verbose"):
123 gdb.write("Registering %s pretty-printer for %s ...\n" %
137 # PERF: gdb records printers in a list, making this inefficient.
201 typename = gdb.types.get_basic_type(val.type).ta
    [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)
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/command/
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)
157 """GDB calls this to perform the command."""
159 self.invoke1("global pretty-printers:", gdb.pretty_printers,
161 cp = gdb.current_progspace()
165 for objfile in gdb.objfiles()
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/command/
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)
157 """GDB calls this to perform the command."""
159 self.invoke1("global pretty-printers:", gdb.pretty_printers,
161 cp = gdb.current_progspace()
165 for objfile in gdb.objfiles()
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/command/
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...]
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/gcc/linux-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/command/
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)
157 """GDB calls this to perform the command."""
159 self.invoke1("global pretty-printers:", gdb.pretty_printers,
161 cp = gdb.current_progspace()
165 for objfile in gdb.objfiles()
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/command/
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)
157 """GDB calls this to perform the command."""
159 self.invoke1("global pretty-printers:", gdb.pretty_printers,
161 cp = gdb.current_progspace()
165 for objfile in gdb.objfiles()
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/command/
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...]
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...]
  /external/chromium_org/third_party/WebKit/Tools/gdb/
webkit.py 29 """GDB support for WebKit types.
31 Add this to your gdb by amending your ~/.gdbinit as follows:
34 sys.path.insert(0, "/path/to/tools/gdb/")
38 import gdb namespace
55 return i, ' (gdb hit inaccessible memory)'
56 return 256, ' (gdb found no trailing NUL)'
62 ptr and length are both gdb.Value objects.
77 ptr and length are both gdb.Value objects.
119 data = self.val['m_buffer']['m_ptr']['m_data'].cast(gdb.lookup_type('char').pointer())
132 return lstring_to_string(chars_start.cast(gdb.lookup_type('char').pointer())
    [all...]
  /external/chromium_org/tools/gdb/
gdb_chrome.py 5 """GDB support for Chrome types.
7 Add this to your gdb by amending your ~/.gdbinit as follows:
10 sys.path.insert(0, "/path/to/tools/gdb/")
14 This module relies on the WebKit gdb module already existing in
18 (gdb) p /r any_variable
23 import gdb namespace
24 import gdb.printing namespace
28 # (gdb) python del sys.modules['gdb_chrome']
29 # (gdb) python import gdb_chrome
34 pp_set = gdb.printing.RegexpCollectionPrettyPrinter("chromium"
    [all...]
  /ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/stlport/
printers.py 0 # GDB pretty printers for STLport.
23 import gdb namespace
45 return gdb.lookup_type (namespace + typename)
56 return gdb.lookup_type (namespace + typename)
127 if words.type.code == gdb.TYPE_CODE_ARRAY:
185 blocksize = 32 * gdb.lookup_type ("void").pointer().sizeof
473 = val.type.template_argument (0).code == gdb.TYPE_CODE_BOOL
515 self.visualizer = gdb.default_visualizer (val['c'])
671 if type.code == gdb.TYPE_CODE_REF:
689 obj = gdb
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/stlport/
printers.py 0 # GDB pretty printers for STLport.
23 import gdb namespace
45 return gdb.lookup_type (namespace + typename)
55 return gdb.lookup_type (namespace + typename)
126 if words.type.code == gdb.TYPE_CODE_ARRAY:
184 blocksize = 32 * gdb.lookup_type ("void").pointer().sizeof
472 = val.type.template_argument (0).code == gdb.TYPE_CODE_BOOL
514 self.visualizer = gdb.default_visualizer (val['c'])
670 if type.code == gdb.TYPE_CODE_REF:
688 obj = gdb
    [all...]
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/stlport/
printers.py 0 # GDB pretty printers for STLport.
23 import gdb namespace
45 return gdb.lookup_type (namespace + typename)
56 return gdb.lookup_type (namespace + typename)
127 if words.type.code == gdb.TYPE_CODE_ARRAY:
185 blocksize = 32 * gdb.lookup_type ("void").pointer().sizeof
473 = val.type.template_argument (0).code == gdb.TYPE_CODE_BOOL
515 self.visualizer = gdb.default_visualizer (val['c'])
671 if type.code == gdb.TYPE_CODE_REF:
689 obj = gdb
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.6/
printers.py 18 import gdb namespace
76 nodetype = gdb.lookup_type('std::_List_node<%s>' % itype).pointer()
78 nodetype = gdb.lookup_type('std::__norm::_List_node<%s>' % itype).pointer()
100 nodetype = gdb.lookup_type('std::_List_node<%s>' % itype).pointer()
102 nodetype = gdb.lookup_type('std::__norm::_List_node<%s>' % itype).pointer()
133 nodetype = gdb.lookup_type('__gnu_cxx::_Slist_node<%s>' % itype).pointer()
149 nodetype = gdb.lookup_type('__gnu_cxx::_Slist_node<%s>' % itype).pointer()
199 self.is_bool = val.type.template_argument(0).code == gdb.TYPE_CODE_BOOL
300 self.visualizer = gdb.default_visualizer(val['c'])
359 nodetype = gdb.lookup_type('std::_Rb_tree_node < %s >' % valuetype
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.7/
printers.py 18 import gdb namespace
25 import gdb.printing namespace
37 return gdb.lookup_type(search)
216 self.is_bool = val.type.template_argument(0).code == gdb.TYPE_CODE_BOOL
319 self.visualizer = gdb.default_visualizer(val['c'])
378 nodetype = gdb.lookup_type(typename).strip_typedefs()
490 if wtype.code == gdb.TYPE_CODE_ARRAY:
593 if type.code == gdb.TYPE_CODE_REF:
601 reptype = gdb.lookup_type (str (realtype) + '::_Rep').pointer ()
716 # "SubPrettyPrinter" protocol from gdb.printing
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.8/
printers.py 18 import gdb namespace
25 import gdb.printing namespace
32 import gdb.types namespace
33 if hasattr(gdb.types, 'TypePrinter'):
46 return gdb.lookup_type(search)
227 self.is_bool = val.type.template_argument(0).code == gdb.TYPE_CODE_BOOL
330 self.visualizer = gdb.default_visualizer(val['c'])
389 nodetype = gdb.lookup_type(typename).strip_typedefs()
501 if wtype.code == gdb.TYPE_CODE_ARRAY:
604 if type.code == gdb.TYPE_CODE_REF
    [all...]
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.6/
printers.py 18 import gdb namespace
76 nodetype = gdb.lookup_type('std::_List_node<%s>' % itype).pointer()
78 nodetype = gdb.lookup_type('std::__norm::_List_node<%s>' % itype).pointer()
100 nodetype = gdb.lookup_type('std::_List_node<%s>' % itype).pointer()
102 nodetype = gdb.lookup_type('std::__norm::_List_node<%s>' % itype).pointer()
133 nodetype = gdb.lookup_type('__gnu_cxx::_Slist_node<%s>' % itype).pointer()
149 nodetype = gdb.lookup_type('__gnu_cxx::_Slist_node<%s>' % itype).pointer()
199 self.is_bool = val.type.template_argument(0).code == gdb.TYPE_CODE_BOOL
300 self.visualizer = gdb.default_visualizer(val['c'])
359 nodetype = gdb.lookup_type('std::_Rb_tree_node < %s >' % valuetype
    [all...]
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.7/
printers.py 18 import gdb namespace
25 import gdb.printing namespace
37 return gdb.lookup_type(search)
216 self.is_bool = val.type.template_argument(0).code == gdb.TYPE_CODE_BOOL
319 self.visualizer = gdb.default_visualizer(val['c'])
378 nodetype = gdb.lookup_type(typename).strip_typedefs()
490 if wtype.code == gdb.TYPE_CODE_ARRAY:
593 if type.code == gdb.TYPE_CODE_REF:
601 reptype = gdb.lookup_type (str (realtype) + '::_Rep').pointer ()
716 # "SubPrettyPrinter" protocol from gdb.printing
    [all...]
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.8/
printers.py 18 import gdb namespace
25 import gdb.printing namespace
32 import gdb.types namespace
33 if hasattr(gdb.types, 'TypePrinter'):
46 return gdb.lookup_type(search)
227 self.is_bool = val.type.template_argument(0).code == gdb.TYPE_CODE_BOOL
330 self.visualizer = gdb.default_visualizer(val['c'])
389 nodetype = gdb.lookup_type(typename).strip_typedefs()
501 if wtype.code == gdb.TYPE_CODE_ARRAY:
604 if type.code == gdb.TYPE_CODE_REF
    [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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkDebuggerTab.java 22 import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
89 lblNewLabel.setText("GDB Command File:");
222 // check gdb path
223 String gdb = mGdbPathText.getText().trim(); local
224 if (!gdb.equals(NdkLaunchConstants.DEFAULT_GDB)) {
225 File f = new File(gdb);
227 setErrorMessage("Invalid gdb location.");
232 // check gdb init path
NdkGdbLaunchDelegate.java 50 import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
51 import org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate;
182 // ndk-gdb requires device > Froyo
346 // launch gdb
364 String gdb = toolchainPrefix + "gdb"; //$NON-NLS-1$ local
368 NdkVariables.NDK_GDB, true, gdb);
377 // fix path to gdb

Completed in 1636 milliseconds

12