Searched refs:RTLD_DEFAULT (Results 1 - 25 of 28) sorted by relevance

12

/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-RTLD_LOCAL-ignore/
H A Dmain.c44 void* fooSym = dlsym(RTLD_DEFAULT, "foo");
47 FAIL("dlsym(RTLD_DEFAULT, \"foo\") failed: %s", msg);
52 void* barSym = dlsym(RTLD_DEFAULT, "bar");
55 FAIL("dlsym(RTLD_DEFAULT, \"bar\") failed: %s", msg);
76 fooSym = dlsym(RTLD_DEFAULT, "foo");
79 FAIL("dlsym(RTLD_DEFAULT, \"foo\") failed: %s", msg);
84 barSym = dlsym(RTLD_DEFAULT, "bar");
87 FAIL("dlsym(RTLD_DEFAULT, \"bar\") failed: %s", msg);
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlsym-RTLD_DEFAULT/
H A Dfoo.c40 strdupProc sym = (strdupProc)dlsym(RTLD_DEFAULT, "strdup");
42 FAIL("dlsym(RTLD_DEFAULT, \"strdup\") failed");
48 FAIL("dlsym(RTLD_DEFAULT, \"strdup\") returned wrong strdup: %s", result);
H A Dmain.c48 strdupProc sym = (strdupProc)dlsym(RTLD_DEFAULT, "strdup");
50 FAIL("dlsym(RTLD_DEFAULT, \"strdup\") failed");
56 FAIL("dlsym(RTLD_DEFAULT, \"strdup\") returned wrong strdup: %s", result);
69 PASS("dlsym-RTLD_DEFAULT bundle and dylib");
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/interpose-shared-cache/
H A Dmain.c38 seenProc seen = (seenProc)dlsym(RTLD_DEFAULT, "allocationSeen");
/macosx-10.9.5/xnu-2422.115.4/libsyscall/mach/
H A Dexc_catcher.h61 #define RTLD_DEFAULT ((void *) -2) macro
H A Dexc_catcher.c55 exc_raise_func = _dlsym(RTLD_DEFAULT, "catch_exception_raise");
H A Dexc_catcher_state.c59 exc_raise_state_func = _dlsym(RTLD_DEFAULT, "catch_exception_raise_state");
H A Dexc_catcher_state_identity.c61 exc_raise_state_identity_func = _dlsym(RTLD_DEFAULT, "catch_exception_raise_state_identity");
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/trie-symbol-overrun/
H A Dmain.c57 dlsym(RTLD_DEFAULT, sym);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/mac/
H A DCookieStorageShim.cpp68 CookieStorageShimInitializeFunc func = reinterpret_cast<CookieStorageShimInitializeFunc>(dlsym(RTLD_DEFAULT, "WebKitCookieStorageShimInitialize"));
H A DSecItemShim.cpp137 SecItemShimInitializeFunc func = reinterpret_cast<SecItemShimInitializeFunc>(dlsym(RTLD_DEFAULT, "WebKitSecItemShimInitialize"));
/macosx-10.9.5/dyld-239.4/include/
H A Ddlfcn.h79 #define RTLD_DEFAULT ((void *) -2) /* Use default search algorithm. */ macro
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlerror/
H A Dmain.c62 dlsym(RTLD_DEFAULT, "foobar");
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DOpenGLShims.cpp53 getProcAddressFunction = reinterpret_cast<glGetProcAddressType>(dlsym(RTLD_DEFAULT, "glXGetProcAddress"));
55 getProcAddressFunction = reinterpret_cast<glGetProcAddressType>(dlsym(RTLD_DEFAULT, "glXGetProcAddressARB"));
59 return dlsym(RTLD_DEFAULT, procName);
/macosx-10.9.5/ruby-104/ruby/ext/dl/
H A Dhandle.c116 * library is specified, RTLD_DEFAULT is used.
279 #ifndef RTLD_DEFAULT
280 #define RTLD_DEFAULT NULL macro
414 * A predefined pseudo-handle of RTLD_DEFAULT
419 rb_define_const(rb_cDLHandle, "DEFAULT", predefined_dlhandle(RTLD_DEFAULT));
/macosx-10.9.5/ruby-104/ruby/ext/fiddle/
H A Dhandle.c119 * library is specified, RTLD_DEFAULT is used.
282 #ifndef RTLD_DEFAULT
283 #define RTLD_DEFAULT NULL macro
420 * A predefined pseudo-handle of RTLD_DEFAULT
425 rb_define_const(rb_cHandle, "DEFAULT", predefined_fiddle_handle(RTLD_DEFAULT));
/macosx-10.9.5/libunwind-35.3/testsuite/
H A Dpersonality.cxx15 static __personality_routine realPersonality = (__personality_routine)dlsym(RTLD_DEFAULT, "__gxx_personality_v0");
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DDynamicLibrary.cpp87 handle = RTLD_DEFAULT;
/macosx-10.9.5/objc4-551.1/test/
H A Dtestroot.i67 void * (*fn)(void *, void *) = (typeof(fn))dlsym(RTLD_DEFAULT, "object_copy");
/macosx-10.9.5/WebCore-7537.78.1/platform/network/cf/
H A DResourceRequestCFNet.cpp82 return reinterpret_cast<CFURLRequestSetContentDispositionEncodingFallbackArrayFunction>(dlsym(RTLD_DEFAULT, "_CFURLRequestSetContentDispositionEncodingFallbackArray"));
87 return reinterpret_cast<CFURLRequestCopyContentDispositionEncodingFallbackArrayFunction>(dlsym(RTLD_DEFAULT, "_CFURLRequestCopyContentDispositionEncodingFallbackArray"));
/macosx-10.9.5/Libc-997.90.3/os/
H A Dassumes.c158 result = dlsym(RTLD_DEFAULT, name);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dparsexml.m607 void* buf = dlsym(RTLD_DEFAULT, name);
833 getfunc = dlsym(RTLD_DEFAULT, funcname);
1136 void* function = dlsym(RTLD_DEFAULT, name);
/macosx-10.9.5/libclosure-63/
H A Druntime.c255 _Block_destructInstance = dlsym(RTLD_DEFAULT, "objc_destructInstance");
/macosx-10.9.5/WebKit2-7537.78.2/PluginProcess/mac/
H A DPluginProcessMac.mm261 PluginProcessShimInitializeFunc initFunc = reinterpret_cast<PluginProcessShimInitializeFunc>(dlsym(RTLD_DEFAULT, "WebKitPluginProcessShimInitialize"));
/macosx-10.9.5/dyld-239.4/src/
H A DdyldAPIs.cpp1416 return RTLD_DEFAULT;
1573 if ( handle == RTLD_DEFAULT )
1680 if ( handle == RTLD_DEFAULT ) {
1685 const char* str = dyld::mkstringf("dlsym(RTLD_DEFAULT, %s): symbol not found", symbolName);

Completed in 252 milliseconds

12