Lines Matching defs:handle
31 return dlsym(module->handle, symbol);
67 if (dlclose(module->handle) != 0)
86 binary_dep = dlsym(module->handle, symbol_name);
117 deps = dlsym(module->handle,
152 void *handle;
162 handle = dlopen(path, flags);
167 return handle;
188 void *handle;
196 handle = quiet_dlopen(path, RTLD_GLOBAL | RTLD_NOW);
197 if (handle == NULL) {
208 handle = dlopen(path, RTLD_GLOBAL | RTLD_NOW);
209 if (handle == NULL) {
215 handle = dlopen(path, RTLD_LAZY);
216 if (handle == NULL)
227 module->handle = handle;