HomeSort by relevance Sort by last modified time
    Searched refs:GTypePlugin (Results 1 - 5 of 5) sorted by null

  /external/bluetooth/glib/gobject/
gtypeplugin.h 32 #define G_TYPE_PLUGIN(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TYPE_PLUGIN, GTypePlugin))
43 * @plugin: the #GTypePlugin whose use count should be increased
48 typedef void (*GTypePluginUse) (GTypePlugin *plugin);
51 * @plugin: the #GTypePlugin whose use count should be decreased
55 typedef void (*GTypePluginUnuse) (GTypePlugin *plugin);
58 * @plugin: the #GTypePlugin
65 typedef void (*GTypePluginCompleteTypeInfo) (GTypePlugin *plugin,
71 * @plugin: the #GTypePlugin
79 typedef void (*GTypePluginCompleteInterfaceInfo) (GTypePlugin *plugin,
84 * GTypePlugin
    [all...]
gtypeplugin.c 22 #include "gtypeplugin.h"
27 * SECTION:gtypeplugin
30 * @title: GTypePlugin
33 * #GTypePlugin interface is used to handle the lifecycle of
48 * #GTypePlugin interface.
76 * So basically, you need to implement a #GTypePlugin type that
85 * #GTypeModule is an implementation of #GTypePlugin that already
105 type_plugin_type = g_type_register_static (G_TYPE_INTERFACE, g_intern_static_string ("GTypePlugin"), &type_plugin_info, 0);
113 * @plugin: a #GTypePlugin
120 g_type_plugin_use (GTypePlugin *plugin
    [all...]
gtypemodule.c 24 #include "gtypeplugin.h"
34 * <term>#GTypePlugin</term>
44 * #GTypeModule provides a simple implementation of the #GTypePlugin
93 static void g_type_module_use_plugin (GTypePlugin *plugin);
94 static void g_type_module_complete_type_info (GTypePlugin *plugin,
98 static void g_type_module_complete_interface_info (GTypePlugin *plugin,
145 iface->unuse_plugin = (void (*) (GTypePlugin *))g_type_module_unuse;
319 g_type_module_use_plugin (GTypePlugin *plugin)
332 g_type_module_complete_type_info (GTypePlugin *plugin,
347 g_type_module_complete_interface_info (GTypePlugin *plugin
    [all...]
gtype.h 373 typedef struct _GTypePlugin GTypePlugin;
    [all...]
gtype.c 29 #include "gtypeplugin.h"
53 * #GTypePlugin structure instead. The remaining type information (the
54 * #GTypeInfo structure) is retrieved during runtime through #GTypePlugin
225 GTypePlugin *plugin;
272 GTypePlugin *plugin;
381 GTypePlugin *plugin,
511 GTypePlugin *plugin)
601 check_plugin_U (GTypePlugin *plugin,
    [all...]

Completed in 228 milliseconds