Home | History | Annotate | Download | only in gcc-demangle

Lines Matching refs:output_buffer

4901    OUTPUT_BUFFER is a region of memory, allocated with malloc, of
4903 OUTPUT_BUFFER is not long enough, it is expanded using realloc.
4904 OUTPUT_BUFFER may instead be NULL; in that case, the demangled name
4924 __cxa_demangle (const char *mangled_name, char *output_buffer,
4937 if (output_buffer != NULL && length == NULL)
4958 if (output_buffer == NULL)
4967 strcpy (output_buffer, demangled);
4969 demangled = output_buffer;
4973 free (output_buffer);