| /src/external/gpl3/gcc/dist/libstdc++-v3/python/libstdcxx/v6/ |
| __init__.py | 25 # Load the pretty-printers. 26 from .printers import register_libstdcxx_printers
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/python/libstdcxx/v6/ |
| __init__.py | 27 # Load the pretty-printers. 28 from .printers import register_libstdcxx_printers
|
| /src/usr.sbin/rpc.pcnfsd/ |
| extern.h | 4 extern pr_list printers;
|
| pcnfsd_print.c | 98 pr_list printers = NULL; variable 130 if (printers == NULL) 133 if (printers == NULL) 139 curr = printers; 367 * build_pr_list: determine which printers are valid. 374 * In SVR4 the command to determine which printers are 503 printers = curr; 512 ** Now add on the virtual printers, if any 515 printers = list_virtual_printers(); 551 /* XXX - Should distinguish remote printers. * [all...] |
| pcnfsd_test.c | 322 curr = rp->printers; 338 if(rp->printers) { 340 free_pr_list_item(rp->printers);
|
| pcnfsd_v2.c | 197 if (printers == NULL) 200 res.printers = printers;
|
| pcnfsd.x | 27 /* The maximum number of printers returned by a LIST operation */ 355 pr_list printers; 563 ** List all printers known on the server.
|
| /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/command/ |
| type_printers.py | 21 """GDB commands for working with type-printers.""" 25 """GDB command to list all registered type-printers. 27 Usage: info type-printers""" 30 super(InfoTypePrinter, self).__init__("info type-printers", gdb.COMMAND_DATA) 33 """Print a list of type printers.""" 34 # A potential enhancement is to provide an option to list printers in 49 print("%sType printers for %s:" % (sep, objfile.filename)) 53 print("%sType printers for program space:" % sep) 57 print("%sGlobal type printers:" % sep) 66 def set_some(self, name, printers) [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/command/ |
| type_printers.py | 21 """GDB commands for working with type-printers.""" 25 """GDB command to list all registered type-printers. 27 Usage: info type-printers""" 30 super(InfoTypePrinter, self).__init__("info type-printers", gdb.COMMAND_DATA) 33 """Print a list of type printers.""" 34 # A potential enhancement is to provide an option to list printers in 49 print("%sType printers for %s:" % (sep, objfile.filename)) 53 print("%sType printers for program space:" % sep) 57 print("%sGlobal type printers:" % sep) 66 def set_some(self, name, printers) [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/python/ |
| Makefile.am | 41 libstdcxx/v6/printers.py \
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/python/ |
| Makefile.am | 41 libstdcxx/v6/printers.py \
|
| /src/external/gpl3/gdb/dist/gdb/python/ |
| py-progspace.c | 44 PyObject *printers; member in struct:pspace_object 164 Py_XDECREF (ps_self->printers); 185 self->printers = PyList_New (0); 186 if (self->printers == NULL) 217 Py_INCREF (self->printers); 218 return self->printers; 241 gdbpy_ref<> tmp (self->printers); 243 self->printers = value; 774 "Pretty printers.", NULL }, 780 "Type printers.", NULL } [all...] |
| py-objfile.c | 41 PyObject *printers; member in struct:objfile_object 198 Py_XDECREF (self->printers); 218 self->printers = PyList_New (0); 219 if (self->printers == NULL) 260 Py_INCREF (self->printers); 261 return self->printers; 284 gdbpy_ref<> tmp (self->printers); 286 self->printers = value; 762 "Pretty printers.", NULL }, 768 "Type printers.", NULL } [all...] |
| python.c | 1948 /* Compute the list of active python type printers and store them in 2063 PyObject *printers = (PyObject *) ext_printers->py_type_printers; 2065 if (printers == NULL) 2072 Py_DECREF (printers);
|
| /src/external/gpl3/gdb.old/dist/gdb/python/ |
| py-progspace.c | 44 PyObject *printers; member in struct:pspace_object 164 Py_XDECREF (ps_self->printers); 185 self->printers = PyList_New (0); 186 if (self->printers == NULL) 217 Py_INCREF (self->printers); 218 return self->printers; 241 gdbpy_ref<> tmp (self->printers); 243 self->printers = value; 775 "Pretty printers.", NULL }, 781 "Type printers.", NULL } [all...] |
| py-objfile.c | 41 PyObject *printers; member in struct:objfile_object 198 Py_XDECREF (self->printers); 218 self->printers = PyList_New (0); 219 if (self->printers == NULL) 260 Py_INCREF (self->printers); 261 return self->printers; 284 gdbpy_ref<> tmp (self->printers); 286 self->printers = value; 766 "Pretty printers.", NULL }, 772 "Type printers.", NULL } [all...] |
| /src/external/gpl3/gdb/dist/gdb/guile/ |
| scm-objfile.c | 64 /* Return the list of pretty-printers registered with O_SMOB. */ 258 /* (objfile-pretty-printers <gdb:objfile>) -> list 259 Returns the list of pretty-printers for this objfile. */ 270 /* (set-objfile-pretty-printers! <gdb:objfile> list) -> unspecified 271 Set the pretty-printers for this objfile. */ 274 gdbscm_set_objfile_pretty_printers_x (SCM self, SCM printers) 279 SCM_ASSERT_TYPE (gdbscm_is_true (scm_list_p (printers)), printers, 282 o_smob->pretty_printers = printers; 390 { "objfile-pretty-printers", 1, 0, 0 [all...] |
| scm-progspace.c | 67 /* Return the list of pretty-printers registered with P_SMOB. */ 298 /* (progspace-pretty-printers <gdb:progspace>) -> list 299 Returns the list of pretty-printers for this program space. */ 310 /* (set-progspace-pretty-printers! <gdb:progspace> list) -> unspecified 311 Set the pretty-printers for this program space. */ 314 gdbscm_set_progspace_pretty_printers_x (SCM self, SCM printers) 319 SCM_ASSERT_TYPE (gdbscm_is_true (scm_list_p (printers)), printers, 322 p_smob->pretty_printers = printers; 383 { "progspace-pretty-printers", 1, 0, 0 [all...] |
| scm-pretty-print.c | 241 /* (pretty-printers) -> list 242 Returns the list of global pretty-printers. */ 250 /* (set-pretty-printers! list) -> unspecified 251 Set the global pretty-printers list. */ 254 gdbscm_set_pretty_printers_x (SCM printers) 256 SCM_ASSERT_TYPE (gdbscm_is_true (scm_list_p (printers)), printers, 259 pretty_printer_list = printers; 1087 { "pretty-printers", 0, 0, 0, as_a_scm_t_subr (gdbscm_pretty_printers), 1089 Return the list of global pretty-printers." } [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/guile/ |
| scm-objfile.c | 64 /* Return the list of pretty-printers registered with O_SMOB. */ 258 /* (objfile-pretty-printers <gdb:objfile>) -> list 259 Returns the list of pretty-printers for this objfile. */ 270 /* (set-objfile-pretty-printers! <gdb:objfile> list) -> unspecified 271 Set the pretty-printers for this objfile. */ 274 gdbscm_set_objfile_pretty_printers_x (SCM self, SCM printers) 279 SCM_ASSERT_TYPE (gdbscm_is_true (scm_list_p (printers)), printers, 282 o_smob->pretty_printers = printers; 390 { "objfile-pretty-printers", 1, 0, 0 [all...] |
| scm-progspace.c | 67 /* Return the list of pretty-printers registered with P_SMOB. */ 298 /* (progspace-pretty-printers <gdb:progspace>) -> list 299 Returns the list of pretty-printers for this program space. */ 310 /* (set-progspace-pretty-printers! <gdb:progspace> list) -> unspecified 311 Set the pretty-printers for this program space. */ 314 gdbscm_set_progspace_pretty_printers_x (SCM self, SCM printers) 319 SCM_ASSERT_TYPE (gdbscm_is_true (scm_list_p (printers)), printers, 322 p_smob->pretty_printers = printers; 383 { "progspace-pretty-printers", 1, 0, 0 [all...] |
| scm-pretty-print.c | 241 /* (pretty-printers) -> list 242 Returns the list of global pretty-printers. */ 250 /* (set-pretty-printers! list) -> unspecified 251 Set the global pretty-printers list. */ 254 gdbscm_set_pretty_printers_x (SCM printers) 256 SCM_ASSERT_TYPE (gdbscm_is_true (scm_list_p (printers)), printers, 259 pretty_printer_list = printers; 1087 { "pretty-printers", 0, 0, 0, as_a_scm_t_subr (gdbscm_pretty_printers), 1089 Return the list of global pretty-printers." } [all...] |
| /src/external/bsd/tcpdump/dist/ |
| print.c | 53 static const struct printer printers[] = { variable in typeref:struct:printer 281 for (p = printers; p->f; ++p) 303 for (p = printers; p->f; ++p) 415 * Printers must check that they're not walking off the end of
|
| /src/external/gpl3/gdb/dist/gdb/ |
| extension.c | 82 the case of pretty-printers this means the first one to provide a 392 /* Interface to type pretty-printers implemented in an extension language. */ 411 /* Iteratively try the type pretty-printers specified by PRINTERS 417 apply_ext_lang_type_printers (struct ext_lang_type_printers *printers, 428 rc = extlang->ops->apply_type_printers (extlang, printers, type,
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| extension.c | 81 the case of pretty-printers this means the first one to provide a 413 /* Interface to type pretty-printers implemented in an extension language. */ 432 /* Iteratively try the type pretty-printers specified by PRINTERS 438 apply_ext_lang_type_printers (struct ext_lang_type_printers *printers, 449 rc = extlang->ops->apply_type_printers (extlang, printers, type,
|