Lines Matching refs:plugin
56 #include "plugin.h"
801 plugin_list_t *plugin;
805 plugin = (plugin_list_t*)ntfs_malloc(sizeof(plugin_list_t));
806 if (plugin) {
807 plugin->tag = tag;
808 plugin->ops = ops;
809 plugin->handle = handle;
810 plugin->next = ctx->plugins;
811 ctx->plugins = plugin;
820 * The plugin able to process the reparse point is dynamically loaded
834 plugin_list_t *plugin;
842 for (plugin=ctx->plugins; plugin && (plugin->tag != seltag);
843 plugin = plugin->next) { }
844 if (plugin) {
845 ops = plugin->ops;
851 "/ntfs-plugin-%08lx.so",
856 snprintf(name,sizeof(name), "ntfs-plugin-%08lx.so",
876 "Could not load plugin %s",
927 /* Reparse point depends on kind, see plugin */