Lines Matching refs:dll
118 static Vcmethod_t* plugin(Void_t* dll, const char* path)
120 static Vcmethod_t* plugin(dll, path)
121 Void_t* dll;
128 if ((libf = (Vclib_f)dlllook(dll, VC_LIB)) && (meth = (*libf)(path)))
133 dlclose(dll);
149 Void_t *dll;
157 if (dll = dlopen(dle->path, RTLD_LAZY))
158 plugin(dll, dle->path);
159 else errorf("dll", NiL, 1, "%s: dlopen failed: %s", dle->path, dlerror());
180 Void_t *dll;
207 if (dll = dllplugin(VC_ID, name, NIL(char*), VCODEX_PLUGIN_VERSION, NiL, RTLD_LAZY, buf1, sizeof(buf1)))
208 return plugin(dll, buf1);