Home | History | Annotate | Download | only in gobject

Lines Matching full:signame

323 generate_marshal (const gchar *signame,
328 gchar *tmp = g_strconcat (marshaller_prefix, "_", signame, NULL);
331 /* here we have to make sure a marshaller named <marshaller_prefix>_<signame>
351 tmp = g_strconcat (std_marshaller_prefix, "_", signame, NULL);
358 g_fprintf (fout, "#define %s_%s\t%s_%s\n", marshaller_prefix, signame, std_marshaller_prefix, signame);
364 ind += g_fprintf (fout, "%s_%s (", marshaller_prefix, signame);
377 ind = g_fprintf (fout, "%s_%s (", marshaller_prefix, signame);
387 ind = g_fprintf (fout, " typedef %s (*GMarshalFunc_%s) (", sig->rarg->ctype, signame);
399 g_fprintf (fout, " register GMarshalFunc_%s callback;\n", signame);
433 g_fprintf (fout, " callback = (GMarshalFunc_%s) (marshal_data ? marshal_data : cc->callback);\n", signame);