Searched defs:RTLD_GLOBAL (Results 1 - 5 of 5) sorted by relevance

/external/bluetooth/glib/gmodule/
H A Dgmodule-os2.c55 * RTLD_GLOBAL - the external symbols defined in the library will be made
58 #ifndef RTLD_GLOBAL
59 #define RTLD_GLOBAL 0 macro
60 #endif /* RTLD_GLOBAL */
78 (bind_local ? 0 : RTLD_GLOBAL) | (bind_lazy ? RTLD_LAZY : RTLD_NOW));
H A Dgmodule-beos.c34 #ifndef RTLD_GLOBAL
35 #define RTLD_GLOBAL 0 macro
36 #endif /* RTLD_GLOBAL */
H A Dgmodule-dl.c59 * RTLD_GLOBAL - the external symbols defined in the library will be made
68 /* some systems (OSF1 V5.0) have broken RTLD_GLOBAL linkage */
70 #undef RTLD_GLOBAL macro
72 #ifndef RTLD_GLOBAL
73 #define RTLD_GLOBAL 0 macro
74 #endif /* RTLD_GLOBAL */
100 (bind_local ? 0 : RTLD_GLOBAL) | (bind_lazy ? RTLD_LAZY : RTLD_NOW));
116 handle = dlopen (NULL, RTLD_GLOBAL | RTLD_LAZY);
/external/libxml2/
H A Dxmlmodule.c198 #ifndef RTLD_GLOBAL /* For Tru64 UNIX 4.0 */
199 #define RTLD_GLOBAL 0 macro
212 return dlopen(name, RTLD_GLOBAL | RTLD_NOW);
/external/qemu/distrib/sdl-1.2.12/src/loadso/macosx/
H A DSDL_dlcompat.c121 #define RTLD_GLOBAL 0x8 macro
218 static struct dlstatus mainStatus = { 0, MAGIC_DYLIB_MOD, NULL, -1, RTLD_GLOBAL, 0, 0, 0 };
545 if (isFlagSet(mode, RTLD_GLOBAL) &&
546 !isFlagSet(dls->mode, RTLD_GLOBAL) && !promoteLocalToGlobal(dls))

Completed in 69 milliseconds