Searched refs:GModule (Results 1 – 25 of 27) sorted by relevance
12
/external/bluetooth/glib/gmodule/ |
D | gmodule.h | 51 typedef struct _GModule GModule; typedef 52 typedef const gchar* (*GModuleCheckInit) (GModule *module); 53 typedef void (*GModuleUnload) (GModule *module); 64 GModule* g_module_open (const gchar *file_name, 68 gboolean g_module_close (GModule *module); 71 void g_module_make_resident (GModule *module); 77 gboolean g_module_symbol (GModule *module, 82 G_CONST_RETURN gchar* g_module_name (GModule *module);
|
D | gmodule.c | 71 GModule *next; 87 static inline GModule* g_module_find_by_handle (gpointer handle); 88 static inline GModule* g_module_find_by_name (const gchar *name); 92 static GModule *modules = NULL; 93 static GModule *main_module = NULL; 100 static inline GModule* 103 GModule *module; in g_module_find_by_handle() 104 GModule *retval = NULL; in g_module_find_by_handle() 119 static inline GModule* 122 GModule *module; in g_module_find_by_name() [all …]
|
D | gmodule.rc.in | 17 VALUE "FileDescription", "GModule"
|
D | makefile.msc.in | 11 DEFINES = -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\"GModule\"
|
D | ChangeLog | 672 G_LOG_DOMAIN to \"GModule\" instead of g_log_domain_gmodule. 969 G_MODULE_EXPORT const gchar* g_module_check_init (GModule *module); 971 G_MODULE_EXPORT void g_module_unload (GModule *module); 1008 to "GModule" upon compilation. we currently have to add this definition 1032 * testgmodule.c: test program for GModule. 1037 * gmodule.c: GModule library implementation, which is basically
|
/external/bluetooth/glib/tests/ |
D | libmoduletestplugin_b.c | 35 g_module_check_init (GModule *module) in g_module_check_init() 43 g_module_unload (GModule *module) in g_module_unload()
|
D | module-test.c | 42 typedef void (*GModuleFunc) (GModule *); 77 GModule *module_self, *module_a, *module_b; in main()
|
D | libmoduletestplugin_a.c | 60 gplugin_a_module_func (GModule *module) in gplugin_a_module_func()
|
/external/webkit/Source/WebKit2/Platform/ |
D | Module.h | 41 typedef struct _GModule GModule; typedef 77 GModule* m_handle;
|
/external/webkit/Source/WebCore/platform/ |
D | FileSystem.h | 74 typedef struct _GModule GModule; typedef 81 typedef GModule* PlatformModule;
|
/external/bluetooth/glib/ |
D | gmodule-no-export-2.0.pc.in | 8 Name: GModule name
|
D | gmodule-2.0-uninstalled.pc.in | 3 Name: GModule Uninstalled
|
D | gmodule-export-2.0.pc.in | 8 Name: GModule name
|
D | gmodule-2.0.pc.in | 8 Name: GModule name
|
D | gmodule-no-export-2.0-uninstalled.pc.in | 8 Name: GModule name
|
D | NEWS.pre-1-3 | 14 * GModule mechanism (implemented in an extra library) which wraps dynamic 153 * New GModule mechanism (implemented in an extra library) which wraps dynamic
|
D | ChangeLog.pre-1-2 | 1849 * NEWS file update for upcoming release of GLib + GModule 1850 version 1.1.3, binary age 0, interface age 0. (GModule uses 2209 * configure.in: added GModule checks. generate files in gmodule/.
|
D | NEWS | 1388 454785 GModule documentation lists same block of code twice. 1389 454786 GModule documentation lists same paragraph twice.
|
D | configure.in | 12 # The following version number definitions apply to GLib, GModule, GObject,
|
/external/webkit/Source/WebCore/plugins/gtk/ |
D | PluginPackageGtk.cpp | 122 static bool moduleMixesGtkSymbols(GModule* module) in moduleMixesGtkSymbols()
|
/external/bluetooth/glib/docs/reference/glib/ |
D | running.sgml | 98 All modules loaded by GModule will be made resident. This can be useful 111 All modules loaded by GModule will bind their symbols at load time, even
|
D | glib-sections.txt | 1681 GModule
|
/external/bluetooth/glib/gio/ |
D | giomodule.c | 97 GModule *library;
|
/external/bluetooth/bluez/ |
D | ChangeLog | 714 Remove dependency on GModule.
|
/external/bluetooth/glib/docs/reference/ |
D | ChangeLog | 2497 * glib/tmpl/modules.sgml: Add an example for GModule
|
12