Home
last modified time | relevance | path

Searched refs:g_module_symbol (Results 1 – 10 of 10) sorted by relevance

/external/bluetooth/glib/tests/
Dmodule-test.c101 if (!g_module_symbol (module_self, "g_module_close", (gpointer *) &f_self)) in main()
114 if (!g_module_symbol (module_a, "gplugin_a_state", in main()
118 if (!g_module_symbol (module_b, "gplugin_b_state", in main()
125 if (!g_module_symbol (module_a, "gplugin_a_func", (gpointer *) &f_a)) in main()
129 if (!g_module_symbol (module_b, "gplugin_b_func", (gpointer *) &f_b)) in main()
142 if (!g_module_symbol (module_self, "g_clash_func", (gpointer *) &f_self)) in main()
146 if (!g_module_symbol (module_a, "g_clash_func", (gpointer *) &f_a)) in main()
150 if (!g_module_symbol (module_b, "g_clash_func", (gpointer *) &f_b)) in main()
165 if (!g_module_symbol (module_a, "gplugin_clash_func", (gpointer *) &f_a)) in main()
169 if (!g_module_symbol (module_b, "gplugin_clash_func", (gpointer *) &f_b)) in main()
[all …]
Dlibmoduletestplugin_a.c64 if (!g_module_symbol (module, "gplugin_say_boo_func", &f )) in gplugin_a_module_func()
/external/webkit/WebCore/plugins/gtk/
DPluginPackageGtk.cpp51 g_module_symbol(m_module, "NP_GetMIMEDescription", (void**)&NP_GetMIMEDescription); in fetchInfo()
52 g_module_symbol(m_module, "NP_GetValue", (void**)&NPP_GetValue); in fetchInfo()
122 g_module_symbol(m_module, "NP_Initialize", (void**)&NP_Initialize); in load()
123 g_module_symbol(m_module, "NP_Shutdown", (void**)&m_NPP_Shutdown); in load()
/external/bluetooth/glib/gmodule/
Dgmodule.symbols14 g_module_symbol
Dgmodule.h77 gboolean g_module_symbol (GModule *module,
Dgmodule.c485 … if (g_module_symbol (module, "g_module_check_init", (gpointer) &check_init) && check_init != NULL) in g_module_open()
490 g_module_symbol (module, "g_module_unload", (gpointer) &module->unload); in g_module_open()
608 g_module_symbol (GModule *module, in g_module_symbol() function
DChangeLog327 * gmodule.c (g_module_symbol): Make sure to
626 * gmodule.c (g_module_symbol): erk, strconcat needs NULL as last arg.
863 * gmodule.c (g_module_symbol): removed inline variable assignment.
960 * gmodule.c (g_module_symbol): fixed a string pointer bug that could
961 cause garbage error messages from g_module_symbol() for systems that
1003 (g_module_symbol): show the failing symbol on error messages.
/external/bluetooth/glib/gio/
Dgiomodule.c162 if (! g_module_symbol (module->library, in g_io_module_load_module()
165 ! g_module_symbol (module->library, in g_io_module_load_module()
/external/bluetooth/glib/docs/reference/glib/
Dglib-sections.txt1686 g_module_symbol
/external/bluetooth/glib/
DChangeLog.pre-2-0727 * tests/module-test.c: g_module_symbol takes a gpointer *, not just