Searched refs:printers (Results 1 - 25 of 28) sorted by relevance

12

/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/python/libstdcxx/v6/
H A D__init__.py27 # Load the pretty-printers.
28 from .printers import register_libstdcxx_printers
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/python/libstdcxx/v6/
H A D__init__.py27 # Load the pretty-printers.
28 from .printers import register_libstdcxx_printers
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/command/
H A Dtype_printers.py20 """GDB commands for working with type-printers."""
23 """GDB command to list all registered type-printers.
25 Usage: info type-printers"""
28 super(InfoTypePrinter, self).__init__("info type-printers",
32 """Print a list of type printers."""
33 # 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)
65 def set_some(self, name, printers)
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/python/lib/gdb/command/
H A Dtype_printers.py20 """GDB commands for working with type-printers."""
24 """GDB command to list all registered type-printers.
26 Usage: info type-printers"""
29 super(InfoTypePrinter, self).__init__("info type-printers", gdb.COMMAND_DATA)
32 """Print a list of type printers."""
33 # A potential enhancement is to provide an option to list printers in
48 print("%sType printers for %s:" % (sep, objfile.filename))
52 print("%sType printers for program space:" % sep)
56 print("%sGlobal type printers:" % sep)
65 def set_some(self, name, printers)
[all...]
/netbsd-current/usr.sbin/rpc.pcnfsd/
H A Dextern.h4 extern pr_list printers;
H A Dpcnfsd_print.c98 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...]
H A Dpcnfsd_v2.c197 if (printers == NULL)
200 res.printers = printers;
H A Dpcnfsd_test.c322 curr = rp->printers;
338 if(rp->printers) {
340 free_pr_list_item(rp->printers);
H A Dpcnfsd.x27 /* The maximum number of printers returned by a LIST operation */
355 pr_list printers;
563 ** List all printers known on the server.
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/
H A Dpy-progspace.c42 PyObject *printers; member in struct:__anon1247
97 Py_XDECREF (ps_self->printers);
117 self->printers = PyList_New (0);
118 if (self->printers == NULL)
159 Py_INCREF (self->printers);
160 return self->printers;
183 gdbpy_ref<> tmp (self->printers);
185 self->printers = value;
531 "Pretty printers.", NULL },
537 "Type printers
[all...]
H A Dpy-objfile.c40 PyObject *printers; member in struct:__anon1246
172 Py_XDECREF (self->printers);
192 self->printers = PyList_New (0);
193 if (self->printers == NULL)
234 Py_INCREF (self->printers);
235 return self->printers;
258 gdbpy_ref<> tmp (self->printers);
260 self->printers = value;
754 "Pretty printers.", NULL },
760 "Type printers
[all...]
H A Dpython.c1442 /* Compute the list of active python type printers and store them in
1556 PyObject *printers = (PyObject *) ext_printers->py_type_printers;
1558 if (printers == NULL)
1565 Py_DECREF (printers);
/netbsd-current/external/gpl3/gdb/dist/gdb/python/
H A Dpy-progspace.c42 PyObject *printers; member in struct:pspace_object
120 Py_XDECREF (ps_self->printers);
140 self->printers = PyList_New (0);
141 if (self->printers == NULL)
182 Py_INCREF (self->printers);
183 return self->printers;
206 gdbpy_ref<> tmp (self->printers);
208 self->printers = value;
553 "Pretty printers.", NULL },
559 "Type printers
[all...]
H A Dpy-objfile.c41 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
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/python/
H A DMakefile.am41 libstdcxx/v6/printers.py \
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/python/
H A DMakefile.am41 libstdcxx/v6/printers.py \
/netbsd-current/external/gpl3/gdb.old/dist/gdb/guile/
H A Dscm-objfile.c55 /* Return the list of pretty-printers registered with O_SMOB. */
270 /* (objfile-pretty-printers <gdb:objfile>) -> list
271 Returns the list of pretty-printers for this objfile. */
282 /* (set-objfile-pretty-printers! <gdb:objfile> list) -> unspecified
283 Set the pretty-printers for this objfile. */
286 gdbscm_set_objfile_pretty_printers_x (SCM self, SCM printers)
291 SCM_ASSERT_TYPE (gdbscm_is_true (scm_list_p (printers)), printers,
294 o_smob->pretty_printers = printers;
407 { "objfile-pretty-printers",
284 gdbscm_set_objfile_pretty_printers_x(SCM self, SCM printers) argument
[all...]
H A Dscm-progspace.c58 /* Return the list of pretty-printers registered with P_SMOB. */
310 /* (progspace-pretty-printers <gdb:progspace>) -> list
311 Returns the list of pretty-printers for this program space. */
322 /* (set-progspace-pretty-printers! <gdb:progspace> list) -> unspecified
323 Set the pretty-printers for this program space. */
326 gdbscm_set_progspace_pretty_printers_x (SCM self, SCM printers)
331 SCM_ASSERT_TYPE (gdbscm_is_true (scm_list_p (printers)), printers,
334 p_smob->pretty_printers = printers;
395 { "progspace-pretty-printers",
324 gdbscm_set_progspace_pretty_printers_x(SCM self, SCM printers) argument
[all...]
H A Dscm-pretty-print.c241 /* (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;
1081 { "pretty-printers", 0, 0, 0, as_a_scm_t_subr (gdbscm_pretty_printers),
1083 Return the list of global pretty-printers
252 gdbscm_set_pretty_printers_x(SCM printers) argument
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/guile/
H A Dscm-objfile.c65 /* Return the list of pretty-printers registered with O_SMOB. */
259 /* (objfile-pretty-printers <gdb:objfile>) -> list
260 Returns the list of pretty-printers for this objfile. */
271 /* (set-objfile-pretty-printers! <gdb:objfile> list) -> unspecified
272 Set the pretty-printers for this objfile. */
275 gdbscm_set_objfile_pretty_printers_x (SCM self, SCM printers)
280 SCM_ASSERT_TYPE (gdbscm_is_true (scm_list_p (printers)), printers,
283 o_smob->pretty_printers = printers;
391 { "objfile-pretty-printers",
273 gdbscm_set_objfile_pretty_printers_x(SCM self, SCM printers) argument
[all...]
H A Dscm-progspace.c68 /* Return the list of pretty-printers registered with P_SMOB. */
299 /* (progspace-pretty-printers <gdb:progspace>) -> list
300 Returns the list of pretty-printers for this program space. */
311 /* (set-progspace-pretty-printers! <gdb:progspace> list) -> unspecified
312 Set the pretty-printers for this program space. */
315 gdbscm_set_progspace_pretty_printers_x (SCM self, SCM printers)
320 SCM_ASSERT_TYPE (gdbscm_is_true (scm_list_p (printers)), printers,
323 p_smob->pretty_printers = printers;
384 { "progspace-pretty-printers",
313 gdbscm_set_progspace_pretty_printers_x(SCM self, SCM printers) argument
[all...]
H A Dscm-pretty-print.c241 /* (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;
1083 { "pretty-printers", 0, 0, 0, as_a_scm_t_subr (gdbscm_pretty_printers),
1085 Return the list of global pretty-printers
252 gdbscm_set_pretty_printers_x(SCM printers) argument
[all...]
/netbsd-current/external/bsd/tcpdump/dist/
H A Dprint.c55 static const struct printer printers[] = { variable in typeref:struct:printer
285 for (p = printers; p->f; ++p)
307 for (p = printers; p->f; ++p)
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dextension.c81 the case of pretty-printers this means the first one to provide a
376 /* Interface to type pretty-printers implemented in an extension language. */
395 /* Iteratively try the type pretty-printers specified by PRINTERS
401 apply_ext_lang_type_printers (struct ext_lang_type_printers *printers,
412 rc = extlang->ops->apply_type_printers (extlang, printers, type,
396 apply_ext_lang_type_printers(struct ext_lang_type_printers *printers, struct type *type) argument
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dextension.c82 the case of pretty-printers this means the first one to provide a
402 /* Interface to type pretty-printers implemented in an extension language. */
421 /* Iteratively try the type pretty-printers specified by PRINTERS
427 apply_ext_lang_type_printers (struct ext_lang_type_printers *printers,
438 rc = extlang->ops->apply_type_printers (extlang, printers, type,
422 apply_ext_lang_type_printers(struct ext_lang_type_printers *printers, struct type *type) argument

Completed in 339 milliseconds

12