Home | History | Annotate | Download | only in gmodule

Lines Matching refs:handle

97   gpointer handle;
99 handle = dlopen (file_name,
101 if (!handle)
104 return handle;
110 gpointer handle;
116 handle = dlopen (NULL, RTLD_GLOBAL | RTLD_LAZY);
117 if (!handle)
120 return handle;
124 _g_module_close (gpointer handle,
134 if (dlclose (handle) != 0)
140 _g_module_symbol (gpointer handle,
147 p = dlsym (handle, symbol_name);