Lines Matching full:unload
70 GModuleUnload unload;
364 main_module->unload = NULL;
480 module->unload = NULL;
488 /* we don't call unload() if the initialization check failed. */
490 g_module_symbol (module, "g_module_unload", (gpointer) &module->unload);
549 if (!module->ref_count && !module->is_resident && module->unload)
551 GModuleUnload unload;
553 unload = module->unload;
554 module->unload = NULL;
555 unload (module);