Searched refs:dlopen (Results 101 - 125 of 176) sorted by relevance

12345678

/external/open-vcdiff/
H A Dltmain.sh738 -dlopen) test "$#" -eq 0 && func_missing_arg "$opt" && break
788 -dlopen=*|--mode=*|--tag=*)
877 # Only execute mode is allowed to have -dlopen flags.
879 func_error "unrecognized option \`-dlopen'"
1506 -dlopen FILE add the directory containing FILE to the library path
1508 This mode sets the library path environment variable according to \`-dlopen'
1561 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
1645 # Handle -dlopen flags immediately.
1689 func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
4428 -dlopen)
[all...]
/external/openfst/
H A Dltmain.sh1076 --dlopen|-dlopen)
1203 # Only execute mode is allowed to have -dlopen flags.
1205 func_error "unrecognized option \`-dlopen'"
2353 -dlopen FILE add the directory containing FILE to the library path
2355 This mode sets the library path environment variable according to \`-dlopen'
2410 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
2525 # Handle -dlopen flags immediately.
2572 func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
5500 -dlopen)
[all...]
/external/pixman/
H A Dltmain.sh1076 --dlopen|-dlopen)
1203 # Only execute mode is allowed to have -dlopen flags.
1205 func_error "unrecognized option \`-dlopen'"
2353 -dlopen FILE add the directory containing FILE to the library path
2355 This mode sets the library path environment variable according to \`-dlopen'
2410 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
2525 # Handle -dlopen flags immediately.
2572 func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
5500 -dlopen)
[all...]
/external/protobuf/gtest/build-aux/
H A Dltmain.sh1076 --dlopen|-dlopen)
1203 # Only execute mode is allowed to have -dlopen flags.
1205 func_error "unrecognized option \`-dlopen'"
2353 -dlopen FILE add the directory containing FILE to the library path
2355 This mode sets the library path environment variable according to \`-dlopen'
2410 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
2525 # Handle -dlopen flags immediately.
2572 func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
5500 -dlopen)
[all...]
/external/protobuf/
H A Dltmain.sh738 -dlopen) test "$#" -eq 0 && func_missing_arg "$opt" && break
788 -dlopen=*|--mode=*|--tag=*)
877 # Only execute mode is allowed to have -dlopen flags.
879 func_error "unrecognized option \`-dlopen'"
1505 -dlopen FILE add the directory containing FILE to the library path
1507 This mode sets the library path environment variable according to \`-dlopen'
1560 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
1644 # Handle -dlopen flags immediately.
1688 func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
3910 -dlopen)
[all...]
/external/qemu/distrib/sdl-1.2.15/build-scripts/
H A Dltmain.sh738 -dlopen) test "$#" -eq 0 && func_missing_arg "$opt" && break
788 -dlopen=*|--mode=*|--tag=*)
877 # Only execute mode is allowed to have -dlopen flags.
879 func_error "unrecognized option \`-dlopen'"
1506 -dlopen FILE add the directory containing FILE to the library path
1508 This mode sets the library path environment variable according to \`-dlopen'
1561 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
1645 # Handle -dlopen flags immediately.
1689 func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
4429 -dlopen)
[all...]
/external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
H A Degl_dri2.c393 dri2_dpy->driver = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
398 dri2_dpy->driver = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
411 _eglLog(_EGL_DEBUG, "DRI2: dlopen(%s)", path);
1509 handle = dlopen(libname, RTLD_LAZY | RTLD_GLOBAL);
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc842 // dlopen() ultimately calls mmap() down inside the loader, which generally
848 INTERCEPTOR(void *, dlopen, const char *filename, int flag) {
851 link_map *map = (link_map *)REAL(dlopen)(filename, flag);
1255 INTERCEPT_FUNCTION(dlopen);
/external/mesa3d/src/egl/drivers/dri2/
H A Degl_dri2.c393 dri2_dpy->driver = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
398 dri2_dpy->driver = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
411 _eglLog(_EGL_DEBUG, "DRI2: dlopen(%s)", path);
1509 handle = dlopen(libname, RTLD_LAZY | RTLD_GLOBAL);
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Degldriver.c83 * Wrappers for dlopen/dlclose()
118 return dlopen(filename, RTLD_LAZY);
150 _eglLog(_EGL_DEBUG, "dlopen(%s)", driverPath);
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Dittnotify_config.h247 #define __itt_load_lib(name) dlopen(name, RTLD_LAZY)
/external/mesa3d/src/egl/main/
H A Degldriver.c83 * Wrappers for dlopen/dlclose()
118 return dlopen(filename, RTLD_LAZY);
150 _eglLog(_EGL_DEBUG, "dlopen(%s)", driverPath);
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11gl.c455 #define GL_LoadObject(X) dlopen(X, (RTLD_NOW|RTLD_GLOBAL))
/external/iproute2/ip/
H A Diplink.c100 static void *BODY; /* cached dlopen(NULL) handle */
114 dlh = dlopen(buf, RTLD_LAZY);
119 dlh = BODY = dlopen(NULL, RTLD_LAZY);
/external/qemu/audio/
H A Dalsaaudio.c1219 alsa_lib = dlopen( "libasound.so", RTLD_NOW );
1221 alsa_lib = dlopen( "libasound.so.2", RTLD_NOW );
/external/chromium_org/chrome/browser/password_manager/
H A Dnative_backend_gnome_x.cc49 void* handle = dlopen("libgnome-keyring.so.0", RTLD_NOW | RTLD_GLOBAL);
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dglobal_menu_bar_x11.cc247 void* dbusmenu_lib = dlopen("libdbusmenu-glib.so", RTLD_LAZY);
/external/chromium_org/third_party/sqlite/src/
H A Dconfigure9567 lt_cv_dlopen="dlopen"
9573 { $as_echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
9574 $as_echo_n "checking for dlopen in -ldl... " >&6; }
9593 char dlopen ();
9597 return dlopen ();
9639 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
9807 { $as_echo "$as_me:$LINENO: checking for dlopen" >&5
9808 $as_echo_n "checking for dlopen... " >&6; }
9818 /* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen
[all...]
/external/libusb-compat/
H A Dconfigure10142 lt_cv_dlopen="dlopen"
10148 { $as_echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
10149 $as_echo_n "checking for dlopen in -ldl... " >&6; }
10168 char dlopen ();
10172 return dlopen ();
10214 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
10382 { $as_echo "$as_me:$LINENO: checking for dlopen" >&5
10383 $as_echo_n "checking for dlopen... " >&6; }
10393 /* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen
[all...]
/external/libvorbis/
H A Dconfigure10582 lt_cv_dlopen="dlopen"
10588 { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
10589 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; }
10608 char dlopen ();
10612 return dlopen ();
10650 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
10810 { echo "$as_me:$LINENO: checking for dlopen" >&5
10811 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; }
10821 /* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen
[all...]
/external/opencv/cxcore/src/
H A Dcxswitcher.cpp318 #define LoadLibrary(name) dlopen(name, RTLD_LAZY)
/external/openssh/
H A Dssh-pkcs11.c499 if ((handle = dlopen(provider_id, RTLD_NOW)) == NULL) {
500 error("dlopen %s failed: %s", provider_id, dlerror());
/external/svox/pico/compat/jni/
H A Dcom_android_tts_compat_SynthProxy.cpp344 void *engine_lib_handle = dlopen(nativeSoLibNativeString,
/external/chromium_org/third_party/libxml/src/
H A Dconfigure10684 lt_cv_dlopen="dlopen"
10690 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
10691 $as_echo_n "checking for dlopen in -ldl... " >&6; }
10706 char dlopen ();
10710 return dlopen ();
10727 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
10782 ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen"
10784 lt_cv_dlopen="dlopen"
10786 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
10787 $as_echo_n "checking for dlopen i
[all...]
/external/qemu-pc-bios/bochs/
H A Dconfigure8453 lt_cv_dlopen="dlopen"
8459 { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
8460 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; }
8479 char dlopen ();
8483 return dlopen ();
8521 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
8681 { echo "$as_me:$LINENO: checking for dlopen" >&5
8682 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; }
8692 /* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen
[all...]

Completed in 531 milliseconds

12345678