Searched refs:RTLD_GLOBAL (Results 1 - 25 of 58) sorted by relevance

123

/macosx-10.10.1/apr-32/apr/apr/include/arch/unix/
H A Dapr_arch_dso.h44 #ifndef RTLD_GLOBAL
45 #define RTLD_GLOBAL 0 macro
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/
H A Ddlfcn.h41 #define RTLD_GLOBAL 0x100 /* allow symbols to be global */ macro
/macosx-10.10.1/ruby-106/ruby/ext/fiddle/lib/
H A Dfiddle.rb43 RTLD_GLOBAL = Handle::RTLD_GLOBAL # :nodoc:
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-RTLD_GLOBAL/
H A Dmain.c36 void* handle = dlopen(argv[1], RTLD_GLOBAL);
49 PASS("dlopen-RTLD_GLOBAL");
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/dlcompat-20010505/
H A Ddlfcn.h49 #define RTLD_GLOBAL 0x8 macro
H A Ddlopen.c251 * to a RTLD_GLOBAL. Or just looking it up with
255 (mode & RTLD_GLOBAL) == RTLD_GLOBAL){
259 p->dlopen_mode |= RTLD_GLOBAL;
266 "RTLD_LOCAL to RTLD_GLOBAL";
338 if((mode & RTLD_GLOBAL) == RTLD_GLOBAL){
341 "RTLD_GLOBAL";
357 if(mode & RTLD_GLOBAL)
358 p->dlopen_mode = RTLD_GLOBAL;
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/compat/
H A Ddlfcn.h45 #define RTLD_GLOBAL 0x100 /* allow symbols to be global */ macro
/macosx-10.10.1/tcl-105/tcl/tcl/unix/
H A DtclLoadDl.c24 * argument to dlopen must always be 1. The RTLD_GLOBAL flag is needed on some
33 #ifndef RTLD_GLOBAL
34 # define RTLD_GLOBAL 0 macro
79 handle = dlopen(native, RTLD_NOW | RTLD_GLOBAL);
91 handle = dlopen(native, RTLD_NOW | RTLD_GLOBAL);
/macosx-10.10.1/tcl-105/tcl84/tcl/compat/
H A Ddlfcn.h45 #define RTLD_GLOBAL 0x100 /* allow symbols to be global */ macro
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/compat/
H A Ddlfcn.h45 #define RTLD_GLOBAL 0x100 /* allow symbols to be global */ macro
/macosx-10.10.1/libxslt-13/libxslt/python/
H A Dlibxsl.py13 from dl import RTLD_GLOBAL, RTLD_NOW
15 RTLD_GLOBAL = -1 variable
21 RTLD_GLOBAL = 0x00100 variable
24 RTLD_GLOBAL = 0x8 variable
30 # print "libxslt could not guess RTLD_GLOBAL and RTLD_NOW " + \
34 # print "libxslt could not guess RTLD_GLOBAL and RTLD_NOW " + \
37 RTLD_GLOBAL = -1 variable
40 if RTLD_GLOBAL != -1 and RTLD_NOW != -1:
43 sys.setdlopenflags(RTLD_GLOBAL | RTLD_NOW)
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-local-and-global/
H A Dmain.c57 void* symGlobal = openWithModeGetSymbol(path, RTLD_GLOBAL, "foo");
59 void* symGlobal = openWithModeGetSymbol(path, RTLD_GLOBAL, "foo");
/macosx-10.10.1/bash-94.1.2/bash-3.2/CWRU/misc/
H A Dhpux10-dlfcn.h51 #define RTLD_GLOBAL DYNAMIC_PATH macro
/macosx-10.10.1/tcl-105/tcl84/tcl/unix/
H A DtclLoadDl.c25 * and this argument to dlopen must always be 1. The RTLD_GLOBAL
34 #ifndef RTLD_GLOBAL
35 # define RTLD_GLOBAL 0 macro
79 handle = dlopen(native, RTLD_NOW | RTLD_GLOBAL);
89 handle = dlopen(native, RTLD_NOW | RTLD_GLOBAL);
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Ddlfcn.hin62 #define RTLD_GLOBAL (1<<2)
/macosx-10.10.1/ruby-106/ruby/ext/fiddle/
H A Dfiddle.h21 #ifndef RTLD_GLOBAL
22 #define RTLD_GLOBAL 0 macro
35 # define RTLD_GLOBAL -1 macro
H A Dhandle.c116 * new(lib = nil, flags = Fiddle::RTLD_LAZY | Fiddle::RTLD_GLOBAL)
134 cflag = RTLD_LAZY | RTLD_GLOBAL;
138 cflag = RTLD_LAZY | RTLD_GLOBAL;
388 * @handle = Fiddle::Handle.new(libc_so, Fiddle::RTLD_LAZY | Fiddle::RTLD_GLOBAL)
391 * See RTLD_LAZY and RTLD_GLOBAL
427 /* Document-const: RTLD_GLOBAL
434 rb_define_const(rb_cHandle, "RTLD_GLOBAL", INT2NUM(RTLD_GLOBAL));
/macosx-10.10.1/dyld-353.2.1/include/
H A Ddlfcn.h68 #define RTLD_GLOBAL 0x8 macro
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-RTLD_LOCAL-ignore/
H A Dmain.c36 void* handle = dlopen("./bar.dylib", RTLD_GLOBAL);
39 FAIL("dlopen(\"%s\", RTLD_GLOBAL) failed: %s", argv[1], msg);
/macosx-10.10.1/ksh-23/ksh/src/lib/libdll/
H A Ddllplug.c55 if (dll = dllopen(dle->path, flags|RTLD_GLOBAL|RTLD_PARENT))
/macosx-10.10.1/libxml2-26/libxml2/
H A Dxmlmodule.c206 #ifndef RTLD_GLOBAL /* For Tru64 UNIX 4.0 */
207 #define RTLD_GLOBAL 0 macro
220 return dlopen(name, RTLD_GLOBAL | RTLD_NOW);
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
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);
/macosx-10.10.1/ruby-106/ruby/ext/dl/
H A Ddl.h16 #ifndef RTLD_GLOBAL
17 #define RTLD_GLOBAL 0 macro
30 # define RTLD_GLOBAL -1 macro
/macosx-10.10.1/iodbc-42.5/iodbc/iodbcinst/
H A Ddlf.h119 #define RTLD_GLOBAL 0x8 macro
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DDynamicLibrary.cpp77 void *handle = dlopen(filename, RTLD_LAZY|RTLD_GLOBAL);
85 // with the handle of dlopen(NULL, RTLD_GLOBAL).

Completed in 180 milliseconds

123