Searched refs:GModule (Results 1 – 25 of 43) sorted by relevance
12
/third_party/glib/gmodule/ |
D | gmodule.h | 65 typedef struct _GModule GModule; typedef 66 typedef const gchar* (*GModuleCheckInit) (GModule *module); 67 typedef void (*GModuleUnload) (GModule *module); 75 GModule* g_module_open (const gchar *file_name, 80 gboolean g_module_close (GModule *module); 84 void g_module_make_resident (GModule *module); 92 gboolean g_module_symbol (GModule *module, 98 const gchar * g_module_name (GModule *module);
|
D | gmodule.c | 202 GModule *next; 217 static inline GModule* g_module_find_by_handle (gpointer handle); 218 static inline GModule* g_module_find_by_name (const gchar *name); 222 static GModule *modules = NULL; 223 static GModule *main_module = NULL; 230 static inline GModule* 233 GModule *module; in g_module_find_by_handle() 234 GModule *retval = NULL; in g_module_find_by_handle() 249 static inline GModule* 252 GModule *module; in g_module_find_by_name() [all …]
|
D | meson.build | 49 message('WARNING: No suitable GModule implementation found!') 83 c_args : ['-DG_LOG_DOMAIN="GModule"'] + glib_hidden_visibility_args, 96 name : 'GModule', 106 name : 'GModule', 116 name : 'GModule',
|
D | gmodule.rc.in | 17 VALUE "FileDescription", "GModule"
|
/third_party/glib/tests/ |
D | libmoduletestplugin_b.c | 32 G_MODULE_EXPORT const gchar* g_module_check_init (GModule *module); 33 G_MODULE_EXPORT void g_module_unload (GModule *module); 41 g_module_check_init (GModule *module) in g_module_check_init() 49 g_module_unload (GModule *module) in g_module_unload()
|
D | libmoduletestplugin_a.c | 35 G_MODULE_EXPORT void gplugin_a_module_func (GModule *module); 64 gplugin_a_module_func (GModule *module) in gplugin_a_module_func()
|
D | module-test.c | 48 typedef void (*GModuleFunc) (GModule *); 83 GModule *module_self, *module_a, *module_b; in main()
|
D | meson.build | 98 # Keep the autotools convention for shared module suffix because GModule
|
/third_party/gstreamer/gstreamer/libs/gst/net/ |
D | meson.build | 48 includes : ['GLib-2.0', 'GObject-2.0', 'GModule-2.0', 'Gio-2.0', 'Gst-1.0'],
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/egl/ |
D | gstglcontext_egl.c | 965 static GModule *module_egl; 995 static GModule *module_opengl = NULL; 997 GModule *setup_module_opengl = 1007 static GModule *module_gles2 = NULL; 1009 GModule *setup_module_gles2 =
|
/third_party/gstreamer/gstplugins_bad/ext/ladspa/ |
D | gstladspautils.h | 68 GModule *plugin;
|
D | gstladspa.c | 295 GModule *plugin; in ladspa_plugin_directory_search()
|
/third_party/gstreamer/gstreamer/libs/gst/check/ |
D | meson.build | 64 includes : ['GLib-2.0', 'GObject-2.0', 'GModule-2.0', 'Gst-1.0'],
|
/third_party/gstreamer/gstreamer/libs/gst/controller/ |
D | meson.build | 62 includes : ['GLib-2.0', 'GObject-2.0', 'GModule-2.0', 'Gst-1.0'],
|
/third_party/glib/gio/ |
D | gio-querymodules.c | 75 GModule *module; in query_dir()
|
/third_party/gstreamer/gstreamer/libs/gst/base/ |
D | meson.build | 65 includes : ['GLib-2.0', 'GObject-2.0', 'GModule-2.0', 'Gst-1.0'],
|
/third_party/gstreamer/gstplugins_bad/sys/androidmedia/ |
D | gstjniutils.c | 37 static GModule *java_module; 503 GModule *module = NULL; in get_application_java_vm() 526 GModule *module; in check_nativehelper() 594 GModule *module = NULL; in check_application_class_loader()
|
/third_party/gstreamer/gstplugins_base/tests/check/generic/ |
D | states.c | 214 GModule *libx11; in call_xinitthreads()
|
/third_party/gstreamer/gstreamer/gst/ |
D | Makefile.am | 300 --include=GModule-2.0 \
|
D | gst_private.h | 374 GModule * module; /* contains the module if plugin is loaded */
|
/third_party/gstreamer/gstplugins_bad/tests/check/generic/ |
D | states.c | 245 GModule *libx11; in main()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/ |
D | meson.build | 163 includes : ['Gst-1.0', 'GstBase-1.0', 'GLib-2.0', 'GObject-2.0', 'GModule-2.0' ],
|
/third_party/glib/ |
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
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/ |
D | gstglcontext.c | 79 static GModule *module_self; 84 static GModule *module_opengl; 108 static GModule *module_gles2;
|
/third_party/gstreamer/gstplugins_bad/sys/nvenc/ |
D | gstnvenc.c | 348 GModule *module; in load_nvenc_library()
|
12