Searched refs:dlh (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10.1/objc4-646/test/
H A Dload-reentrant.m22 void *dlh = dlopen("libload-reentrant2.dylib", RTLD_LAZY);
23 testassert(dlh);
24 state2_p = (int *)dlsym(dlh, "state2");
H A Dload-parallel.m39 void *dlh = dlopen(buf, RTLD_LAZY);
40 if (!dlh) {
/macosx-10.10.1/OpenPAM-20/openpam/lib/
H A Dopenpam_dynamic.c63 void *dlh; local
66 dlh = NULL;
79 if ((dlh = dlopen(vpath, RTLD_NOW)) == NULL) {
82 if ((dlh = dlopen(vpath, RTLD_NOW)) == NULL) {
92 module->dlh = dlh;
94 module->func[i] = (pam_func_t)dlsym(dlh, _pam_sm_func_name[i]);
102 if (dlh != NULL)
103 dlclose(dlh);
H A Dopenpam_load.c103 if (module->dlh == NULL)
106 dlclose(module->dlh);
/macosx-10.10.1/OpenPAM-20/openpam/include/security/
H A Dopenpam.h278 void *dlh; member in struct:pam_module
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-auto.mm1244 void *dlh;
1250 dlh = dlopen("/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation", RTLD_LAZY | RTLD_NOLOAD | RTLD_FIRST);
1251 if (!dlh) return result;
1253 CFGetTypeID = (size_t(*)(void*)) dlsym(dlh, "CFGetTypeID");
1254 _CFRuntimeGetClassWithTypeID = (fake_cfclass*(*)(size_t)) dlsym(dlh, "_CFRuntimeGetClassWithTypeID");
1261 dlclose(dlh);

Completed in 179 milliseconds