Lines Matching refs:thisplug
1099 struct pluginlist *thisplug; in fwflash_intr() local
1147 TAILQ_FOREACH(thisplug, fw_pluginlist, nextplugin) { in fwflash_intr()
1148 free(thisplug->filename); in fwflash_intr()
1149 free(thisplug->drvname); in fwflash_intr()
1150 free(thisplug->plugin->filename); in fwflash_intr()
1151 free(thisplug->plugin->drvname); in fwflash_intr()
1152 thisplug->filename = NULL; in fwflash_intr()
1153 thisplug->drvname = NULL; in fwflash_intr()
1154 thisplug->plugin->filename = NULL; in fwflash_intr()
1155 thisplug->plugin->drvname = NULL; in fwflash_intr()
1156 thisplug->plugin->fw_readfw = NULL; in fwflash_intr()
1157 thisplug->plugin->fw_writefw = NULL; in fwflash_intr()
1158 thisplug->plugin->fw_identify = NULL; in fwflash_intr()
1159 thisplug->plugin->fw_devinfo = NULL; in fwflash_intr()
1160 thisplug->plugin->fw_cleanup = NULL; in fwflash_intr()
1161 (void) dlclose(thisplug->plugin->handle); in fwflash_intr()
1162 thisplug->plugin->handle = NULL; in fwflash_intr()
1163 free(thisplug->plugin); in fwflash_intr()
1164 thisplug->plugin = NULL; in fwflash_intr()
1166 TAILQ_REMOVE(fw_pluginlist, thisplug, nextplugin); in fwflash_intr()