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

  /external/bluetooth/glib/gmodule/
gmodule.h 0 /* GMODULE - GLIB wrapper code for dynamic module loading
51 typedef struct _GModule GModule;
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);
gmodule.c 0 /* GMODULE - GLIB wrapper code for dynamic module loading
34 #include "gmodule.h"
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;
104 GModule *retval = NULL
    [all...]
  /external/bluetooth/glib/tests/
libmoduletestplugin_b.c 30 #include <gmodule.h>
35 g_module_check_init (GModule *module)
43 g_module_unload (GModule *module)
libmoduletestplugin_a.c 30 #include <gmodule.h>
60 gplugin_a_module_func (GModule *module)
module-test.c 1 /* module-test.c - test program for GMODULE
30 #include <gmodule.h>
42 typedef void (*GModuleFunc) (GModule *);
77 GModule *module_self, *module_a, *module_b;
181 /* call gmodule function from A */
  /external/webkit/Source/WebKit2/Platform/
Module.h 41 typedef struct _GModule GModule;
77 GModule* m_handle;
  /external/webkit/Source/WebCore/platform/
FileSystem.h 74 typedef struct _GModule GModule;
81 typedef GModule* PlatformModule;
  /external/webkit/Source/WebCore/plugins/gtk/
PluginPackageGtk.cpp 122 static bool moduleMixesGtkSymbols(GModule* module)
  /external/bluetooth/glib/gio/
giomodule.c 97 GModule *library;
110 static gboolean g_io_module_load_module (GTypeModule *gmodule);
111 static void g_io_module_unload_module (GTypeModule *gmodule);
143 g_io_module_load_module (GTypeModule *gmodule)
145 GIOModule *module = G_IO_MODULE (gmodule);
182 g_io_module_unload_module (GTypeModule *gmodule)
184 GIOModule *module = G_IO_MODULE (gmodule);

Completed in 129 milliseconds