Searched defs:dl_handle (Results 1 - 2 of 2) sorted by relevance

/bind-9.11.3/bin/named/unix/
H A Ddlz_dlopen_driver.c39 void *dl_handle; member in struct:dlopen_data
195 void *ptr = dlsym(cd->dl_handle, symbol);
271 cd->dl_handle = dlopen(cd->dl_path, dlopen_flags);
272 if (cd->dl_handle == NULL) {
370 if (cd->dl_handle)
371 dlclose(cd->dl_handle);
400 if (cd->dl_handle)
401 dlclose(cd->dl_handle);
/bind-9.11.3/bin/named/win32/
H A Ddlz_dlopen_driver.c40 HMODULE dl_handle; member in struct:dlopen_data
196 void *ptr = GetProcAddress(cd->dl_handle, symbol);
257 cd->dl_handle = LoadLibraryA(cd->dl_path);
258 if (cd->dl_handle == NULL) {
357 if (cd->dl_handle)
358 FreeLibrary(cd->dl_handle);
386 if (cd->dl_handle)
387 FreeLibrary(cd->dl_handle);

Completed in 18 milliseconds