/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/ |
__init__.py | 16 import gdb.command.pretty_printers namespace 18 gdb.command.pretty_printers.register_pretty_printer_commands()
|
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...] |
printing.py | 19 import gdb namespace 20 import gdb.types namespace 29 it is defined (objfile, progspace, or global(gdb)), and should 113 if gdb.parameter("verbose"): 114 gdb.write("Registering global %s pretty-printer ...\n" % name) 115 obj = gdb 117 if gdb.parameter("verbose"): 118 gdb.write("Registering %s pretty-printer for %s ...\n" % 132 # PERF: gdb records printers in a list, making this inefficient. 196 typename = gdb.types.get_basic_type(val.type).ta [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/ |
__init__.py | 16 import gdb.command.pretty_printers namespace 18 gdb.command.pretty_printers.register_pretty_printer_commands()
|
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...] |
printing.py | 19 import gdb namespace 20 import gdb.types namespace 29 it is defined (objfile, progspace, or global(gdb)), and should 113 if gdb.parameter("verbose"): 114 gdb.write("Registering global %s pretty-printer ...\n" % name) 115 obj = gdb 117 if gdb.parameter("verbose"): 118 gdb.write("Registering %s pretty-printer for %s ...\n" % 132 # PERF: gdb records printers in a list, making this inefficient. 196 typename = gdb.types.get_basic_type(val.type).ta [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/ |
__init__.py | 16 import gdb.command.pretty_printers namespace 18 gdb.command.pretty_printers.register_pretty_printer_commands()
|
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...] |
printing.py | 19 import gdb namespace 20 import gdb.types namespace 29 it is defined (objfile, progspace, or global(gdb)), and should 113 if gdb.parameter("verbose"): 114 gdb.write("Registering global %s pretty-printer ...\n" % name) 115 obj = gdb 117 if gdb.parameter("verbose"): 118 gdb.write("Registering %s pretty-printer for %s ...\n" % 132 # PERF: gdb records printers in a list, making this inefficient. 196 typename = gdb.types.get_basic_type(val.type).ta [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/ |
__init__.py | 16 import gdb.command.pretty_printers namespace 18 gdb.command.pretty_printers.register_pretty_printer_commands()
|
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...] |
printing.py | 19 import gdb namespace 20 import gdb.types namespace 29 it is defined (objfile, progspace, or global(gdb)), and should 113 if gdb.parameter("verbose"): 114 gdb.write("Registering global %s pretty-printer ...\n" % name) 115 obj = gdb 117 if gdb.parameter("verbose"): 118 gdb.write("Registering %s pretty-printer for %s ...\n" % 132 # PERF: gdb records printers in a list, making this inefficient. 196 typename = gdb.types.get_basic_type(val.type).ta [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/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 newprompt = gdb.prompt.substitute_prompt(self.value)
|
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/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/function/ |
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/gcc/linux-x86/arm/arm-linux-androideabi-4.7/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 newprompt = gdb.prompt.substitute_prompt(self.value)
|
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/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/function/ |
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/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:
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/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...] |
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/linux-x86/arm/arm-linux-androideabi-4.7/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...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/lib/ |
libstdc++.so.6.0.16-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.7-4.6/x86_64-linux/lib64/ |
libstdc++.so.6.0.16-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 ())
|