Searched refs:RTLD_LOCAL (Results 1 - 25 of 31) sorted by relevance

12

/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-local-and-global/
H A Dmain.c38 if ( ((mode & RTLD_LOCAL) != 0) && (strstr(msg, "RTLD_LOCAL") != NULL) )
56 void* symLocal = openWithModeGetSymbol(path, RTLD_LOCAL, "foo");
60 void* symLocal = openWithModeGetSymbol(path, RTLD_LOCAL, "foo");
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/dlcompat-20010505/
H A Ddlfcn.h48 #define RTLD_LOCAL 0x4 macro
H A Ddlopen.c250 * caller might be trying to promote an RTLD_LOCAL handle
254 if((p->dlopen_mode & RTLD_LOCAL) == RTLD_LOCAL &&
258 p->dlopen_mode &= ~RTLD_LOCAL;
266 "RTLD_LOCAL to RTLD_GLOBAL";
340 sasl_dlerror_pointer = "can't promote handle from RTLD_LOCAL to "
360 p->dlopen_mode = RTLD_LOCAL;
/macosx-10.10.1/Heimdal-398.1.2/tests/apple/
H A Dcheck-export.c315 syms = dlopen("/System/Library/Framework/GSS.framework/GSS", RTLD_NOW | RTLD_LOCAL);
331 syms = dlopen("/System/Library/PrivateFrameworks/Heimdal.framework/Heimdal", RTLD_NOW | RTLD_LOCAL);
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-RTLD_LOCAL-weak/
H A Dmain.c31 // As in loaded code because of RTLD_LOCAL
39 void* fooHandle = dlopen("libfoo.dylib", RTLD_LOCAL);
41 FAIL("dlopen-RTLD_LOCAL-weak: dlopen(\"libfoo.dylib\", RTLD_LOCAL) failed: %s", dlerror());
46 void* barHandle = dlopen("libbar.dylib", RTLD_LOCAL);
48 FAIL("dlopen-RTLD_LOCAL-weak: dlopen(\"libbar.dylib\", RTLD_LOCAL) failed: %s", dlerror());
55 FAIL("dlopen-RTLD_LOCAL-weak: dlsym(getA) failed: %s", dlerror());
60 FAIL("dlopen-RTLD_LOCAL-weak: dlsym(getA) failed: %s", dlerror());
69 FAIL("dlopen-RTLD_LOCAL
[all...]
/macosx-10.10.1/OpenPAM-20/compat/
H A Dpam_shim.c142 void *openpam = dlopen(libopenpam, RTLD_LOCAL | RTLD_LAZY | RTLD_FIRST);
155 void *openpam = dlopen(libopenpam, RTLD_LOCAL | RTLD_LAZY | RTLD_FIRST);
169 void *openpam = dlopen(libopenpam, RTLD_LOCAL | RTLD_LAZY | RTLD_FIRST);
183 void *openpam = dlopen(libopenpam, RTLD_LOCAL | RTLD_LAZY | RTLD_FIRST);
197 void *openpam = dlopen(libopenpam, RTLD_LOCAL | RTLD_LAZY | RTLD_FIRST);
211 void *openpam = dlopen(libopenpam, RTLD_LOCAL | RTLD_LAZY | RTLD_FIRST);
225 void *openpam = dlopen(libopenpam, RTLD_LOCAL | RTLD_LAZY | RTLD_FIRST);
239 void *openpam = dlopen(libopenpam, RTLD_LOCAL | RTLD_LAZY | RTLD_FIRST);
253 void *openpam = dlopen(libopenpam, RTLD_LOCAL | RTLD_LAZY | RTLD_FIRST);
267 void *openpam = dlopen(libopenpam, RTLD_LOCAL | RTLD_LAZ
[all...]
/macosx-10.10.1/iodbc-42.5/iodbc/iodbcinst/
H A Ddlf.h118 #define RTLD_LOCAL 0x4 macro
230 #ifndef RTLD_LOCAL
231 #define RTLD_LOCAL 0 /* Only if not defined by dlfcn.h */ macro
238 #define OPL_DL_MODE (RTLD_NOW | RTLD_LOCAL)
240 #define OPL_DL_MODE (RTLD_LAZY | RTLD_LOCAL)
H A Ddlf.c1103 * caller might be trying to promote an RTLD_LOCAL handle
1107 if ((p->dlopen_mode & RTLD_LOCAL) == RTLD_LOCAL &&
1113 p->dlopen_mode &= ~RTLD_LOCAL;
1121 "RTLD_LOCAL to RTLD_GLOBAL";
1200 dlerror_pointer = "can't promote handle from RTLD_LOCAL to "
1219 p->dlopen_mode = RTLD_LOCAL;
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-RTLD_LOCAL/
H A Dmain.c35 void* handle = dlopen(argv[1], RTLD_LOCAL);
38 // Panther dlopen() fails on RTLD_LOCAL of a dylib
39 if ( strstr(msg, "RTLD_LOCAL") != NULL )
40 XFAIL("dlopen(\"%s\", RTLD_LOCAL) failed: %s", argv[1], msg);
42 FAIL("dlopen(\"%s\", RTLD_LOCAL) failed: %s", argv[1], msg);
59 PASS("dlopen-RTLD_LOCAL");
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Ddlfcn.hin64 #define RTLD_LOCAL (1<<3)
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-RTLD_LOCAL-ignore/
H A Dmain.c59 // open foo privately (since it was already opened global, RTLD_LOCAL should have no effect
60 void* handleFoo = dlopen("./foo.dylib", RTLD_LOCAL);
63 FAIL("dlopen(\"%s\", RTLD_LOCAL) failed: %s", "./foo.dylib", msg);
67 // open foo privately (since it was already opened global, RTLD_LOCAL should have no effect
68 void* handleBar = dlopen("./bar.dylib", RTLD_LOCAL);
71 FAIL("dlopen(\"%s\", RTLD_LOCAL) failed: %s", "./bar.dylib", msg);
91 PASS("dlopen-RTLD_LOCAL-ignore");
/macosx-10.10.1/dtrace-147/test/tst/common/usdt/
H A Dtst.dlclose2.ksh105 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
112 if ((dead = dlopen("./deadlib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
117 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
H A Dtst.dlclose1.ksh104 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
/macosx-10.10.1/dyld-353.2.1/include/
H A Ddlfcn.h67 #define RTLD_LOCAL 0x4 macro
/macosx-10.10.1/configd-699.1.5/SystemConfiguration.fproj/
H A DCaptiveNetwork.c56 image = dlopen(path, RTLD_LAZY | RTLD_LOCAL);
58 image = dlopen(framework, RTLD_LAZY | RTLD_LOCAL);
H A Ddy_framework.c55 image = dlopen(path, RTLD_LAZY | RTLD_LOCAL);
57 image = dlopen(framework, RTLD_LAZY | RTLD_LOCAL);
397 image = dlopen(path, RTLD_LAZY | RTLD_LOCAL);
399 image = dlopen(framework, RTLD_LAZY | RTLD_LOCAL);
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/mech/
H A Dgss_mech_switch.c314 #ifndef RTLD_LOCAL
315 #define RTLD_LOCAL 0 macro
322 so = dlopen(lib, RTLD_LAZY | RTLD_LOCAL | RTLD_GROUP);
/macosx-10.10.1/apr-32/apr/apr/dso/netware/
H A Ddso.c81 os_handle = dlopen(fullpath, RTLD_NOW | RTLD_LOCAL);
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dplugin.c119 #ifndef RTLD_LOCAL
120 #define RTLD_LOCAL 0 macro
124 e->u.dso.dsohandle = dlopen(path, RTLD_LOCAL|RTLD_LAZY);
514 p->dsohandle = dlopen(path, RTLD_LOCAL|RTLD_LAZY);
H A Dacache.c121 #ifndef RTLD_LOCAL
122 #define RTLD_LOCAL 0 macro
129 cc_handle = dlopen(explib, RTLD_LAZY|RTLD_LOCAL);
134 cc_handle = dlopen(lib, RTLD_LAZY|RTLD_LOCAL);
/macosx-10.10.1/tcl-105/tcl84/tcl/unix/
H A DtclLoadDyld.c205 dlHandle = dlopen(nativePath, RTLD_NOW | RTLD_LOCAL);
215 dlHandle = dlopen(nativeFileName, RTLD_NOW | RTLD_LOCAL);
/macosx-10.10.1/xnu-2782.1.97/tools/tests/perf_index/
H A Dperf_index.c76 handle = dlopen(path, RTLD_NOW | RTLD_LOCAL);
/macosx-10.10.1/MITKerberosShim-66/
H A Dheim-loader.c12 hf = dlopen("/System/Library/PrivateFrameworks/Heimdal.framework/Heimdal", RTLD_LAZY|RTLD_LOCAL);
13 gf = dlopen("/System/Library/Frameworks/GSS.framework/GSS", RTLD_LAZY|RTLD_LOCAL);
/macosx-10.10.1/configd-699.1.5/scutil.tproj/
H A Dprefs.c63 image = dlopen(path, RTLD_LAZY | RTLD_LOCAL);
65 image = dlopen(framework, RTLD_LAZY | RTLD_LOCAL);
/macosx-10.10.1/dtrace-147/libctf/
H A Dctf_lib.c66 if ((zlib.z_dlp = dlopen(_libctf_zlib, RTLD_LAZY | RTLD_LOCAL)) == NULL)

Completed in 232 milliseconds

12