Home | History | Annotate | Download | only in libiberty

Lines Matching refs:demangled

40    components, and then walks the list generating the demangled
316 /* Fixed-length allocated buffer for demangled data, flushed to the
324 /* Callback function to handle demangled buffer flush. */
4055 CALLBACK is a function to call to flush demangled string segments
5829 mangled name, return strings in repeated callback giving the demangled
5920 name, return a buffer allocated with malloc holding the demangled
5953 string containing the name to be demangled.
5956 *LENGTH bytes, into which the demangled name is stored. If
5958 OUTPUT_BUFFER may instead be NULL; in that case, the demangled name
5962 demangled name, is placed in *LENGTH.
5965 demangled name, or NULL if the demangling fails. The caller is
5981 char *demangled;
5998 demangled = d_demangle (mangled_name, DMGL_PARAMS | DMGL_TYPES, &alc);
6000 if (demangled == NULL)
6019 if (strlen (demangled) < *length)
6021 strcpy (output_buffer, demangled);
6022 free (demangled);
6023 demangled = output_buffer;
6035 return demangled;
6045 string containing the name to be demangled.
6047 CALLBACK is a callback function, called with demangled string
6084 demangled name. Otherwise, return NULL. */
6262 fprintf (fp, "If names are provided, they are demangled. Otherwise filters standard input.\n");
6279 with their demangled equivalents. */
6387 /* If it worked, print the demangled name. */