Searched refs:dlopen (Results 51 - 75 of 213) sorted by relevance

123456789

/external/compiler-rt/test/asan/TestCases/
H A Ddlclose-test.cc44 void *lib = dlopen(path.c_str(), RTLD_NOW);
46 printf("error in dlopen(): %s\n", dlerror());
/external/e2fsprogs/lib/ss/
H A Dget_readline.c69 if ((handle = dlopen(cp, RTLD_NOW))) {
/external/iproute2/tc/
H A Dtc.c43 static void *BODY = NULL; /* cached handle dlopen(NULL) */
124 dlh = dlopen(buf, RTLD_LAZY);
129 dlh = BODY = dlopen(NULL, RTLD_LAZY);
178 dlh = dlopen(buf, RTLD_LAZY);
182 dlh = BODY = dlopen(NULL, RTLD_LAZY);
/external/mesa3d/src/mesa/main/
H A Ddlopen.h29 * Wrapper functions for dlopen(), dlsym(), dlclose().
43 * Wrapper for dlopen().
53 return dlopen(libname, flags);
/external/skia/platform_tools/android/launcher/
H A Dskia_launcher.cpp44 void* appLibrary = dlopen(libraryLocation, RTLD_LOCAL | RTLD_LAZY);
/external/chromium_org/native_client_sdk/src/examples/tutorial/dlopen/
H A Ddlopen.cc72 // This function is called on a worker thread, and will call dlopen to load
76 eightball_so_ = dlopen("libeightball.so", RTLD_LAZY);
94 reverse_so_ = dlopen(reverse_so_path, RTLD_LAZY);
/external/chromium_org/ppapi/native_client/tests/nacl_browser/browser_dynamic_library/
H A Dnacl.scons14 'libmemusage.so', # Will dlopen this library.
/external/qemu/android/config/
H A Dcheck-alsa.c77 alsa_lib = dlopen( "libasound.so", RTLD_NOW );
79 alsa_lib = dlopen( "libasound.so.2", RTLD_NOW );
/external/chromium_org/third_party/mesa/src/src/gbm/main/
H A Dbackend.c73 module = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_cgl.c78 h = dlopen(opengl_framework_path, RTLD_NOW);
81 fprintf(stderr, "error: unable to dlopen %s : %s\n",
/external/chromium_org/third_party/webrtc/base/
H A Dlatebindingsymboltable.cc95 handle_ = dlopen(dll_path,
/external/chromium_org/tools/gyp/test/module/src/
H A Dprogram.c72 dl = dlopen(module_path, RTLD_LAZY);
/external/deqp/framework/delibs/deutil/
H A DdeDynamicLibrary.c43 library->libHandle = dlopen(fileName, RTLD_LAZY);
/external/mesa3d/src/gbm/main/
H A Dbackend.c73 module = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
/external/mesa3d/src/glx/apple/
H A Dapple_cgl.c78 h = dlopen(opengl_framework_path, RTLD_NOW);
81 fprintf(stderr, "error: unable to dlopen %s : %s\n",
/external/qemu/distrib/sdl-1.2.15/acinclude/
H A Dltdl.m4440 AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
442 [# PORTME does your system automatically load deplibs for dlopen?
488 # at 6.2 and later dlopen does load deplibs.
498 # dlopen did load deplibs (at least at 4.x), but until the 5.x series,
504 # dlopen *does* load deplibs and with the right loader patch applied
532 [Define if the OS needs help to load dependent libraries for dlopen().])
616 AC_CACHE_CHECK([whether libtool supports -dlopen/-dlpreopen],
641 AC_SEARCH_LIBS([dlopen], [dl],
648 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
652 ]], [[dlopen(
[all...]
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dapp_indicator_icon.cc98 void* indicator_lib = dlopen("libappindicator.so", RTLD_LAZY);
100 indicator_lib = dlopen("libappindicator.so.1", RTLD_LAZY);
103 indicator_lib = dlopen("libappindicator.so.0", RTLD_LAZY);
/external/bluetooth/bluedroid/hci/src/
H A Dvendor.c65 lib_handle = dlopen(VENDOR_LIBRARY_NAME, RTLD_NOW);
/external/chromium_org/content/browser/geolocation/
H A Dwifi_data_provider_mac.cc70 apple_80211_library_ = dlopen(
/external/chromium_org/third_party/hwcplus/src/
H A Dhardware.c75 * return the dlopen handle and the hmi.
88 * dlopen returns. Since RTLD_GLOBAL is not or'd in with
91 handle = dlopen(path, RTLD_NOW);
180 * Here we rely on the fact that calling dlopen multiple times on
183 * We also assume that dlopen() is thread-safe.
/external/llvm/lib/Support/
H A DDynamicLibrary.cpp60 void *handle = dlopen(filename, RTLD_LAZY|RTLD_GLOBAL);
68 // with the handle of dlopen(NULL, RTLD_GLOBAL).
97 if (errMsg) *errMsg = "dlopen() not supported on this platform";
/external/openfst/src/include/fst/
H A Dgeneric-register.h77 void *handle = dlopen(so_filename.c_str(), RTLD_LAZY);
/external/qemu/android/utils/
H A Ddll.c123 result = dlopen( libName, RTLD_LAZY );
/external/chromium_org/v8/src/third_party/vtune/
H A Djitprofiling.cc369 m_libHandle = dlopen(dllName, RTLD_LAZY);
378 m_libHandle = dlopen(DEFAULT_DLLNAME, RTLD_LAZY);
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c349 m_libHandle = dlopen(dllName, RTLD_LAZY);
358 m_libHandle = dlopen(DEFAULT_DLLNAME, RTLD_LAZY);

Completed in 700 milliseconds

123456789