HomeSort by relevance Sort by last modified time
    Searched refs:dlopen (Results 176 - 200 of 514) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/compiler-rt/lib/cfi/
cfi.cc 177 // dlopen(RTLD_NOLOAD | RTLD_LAZY)
372 // Setup shadow for dlopen()ed libraries.
373 // The actual shadow setup happens after dlopen() returns, which means that
376 // In glibc, mmap inside dlopen is not interceptable.
380 INTERCEPTOR(void*, dlopen, const char *filename, int flag) {
382 void *handle = REAL(dlopen)(filename, flag);
404 INTERCEPT_FUNCTION(dlopen);
  /device/google/marlin/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 71 mHandle = dlopen("/vendor/lib/libthermalclient.so", RTLD_NOW);
74 LOGE("dlopen failed with error %s",
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_shlib.c 116 PySys_WriteStderr("dlopen(\"%s\", %x);\n", pathname,
130 handle = dlopen(pathname, dlopenflags);
135 error = "unknown dlopen() error";
  /external/chromium-trace/catapult/systrace/atrace_helper/jni/
libmemtrack_wrapper.cc 72 void *handle = dlopen("libmemtrack.so", RTLD_GLOBAL | RTLD_NOW);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_unwind_linux_libcdep.cc 20 #include <dlfcn.h> // for dlopen()
56 void *p = dlopen("libcorkscrew.so", RTLD_LAZY);
  /external/compiler-rt/test/asan/TestCases/Posix/
coverage-direct-large.cc 56 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib
  /external/iproute2/tc/
m_ipt.c 195 handle = dlopen(path, RTLD_LAZY);
199 handle = dlopen(path, RTLD_LAZY);
203 handle = dlopen(path, RTLD_LAZY);
208 handle = dlopen(path, RTLD_LAZY);
  /external/libnl/src/lib/
utils.c 191 if (!(handle = dlopen(path, RTLD_NOW)))
  /external/llvm/lib/Support/
DynamicLibrary.cpp 60 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/python/cpython2/PC/os2emx/
dlfcn.c 32 /* This library implements dlopen() - Unix-like dynamic linking
71 void *dlopen(char *filename, int flags) function
  /external/python/cpython2/Python/
dynload_shlib.c 116 PySys_WriteStderr("dlopen(\"%s\", %x);\n", pathname,
130 handle = dlopen(pathname, dlopenflags);
135 error = "unknown dlopen() error";
  /external/python/cpython3/Python/
dynload_shlib.c 95 handle = dlopen(pathname, dlopenflags);
103 error = "unknown dlopen() error";
  /external/skia/tools/gpu/gl/mac/
CreatePlatformGLTestContext_mac.cpp 83 fGLLibrary = dlopen(
  /external/skqp/tools/gpu/gl/mac/
CreatePlatformGLTestContext_mac.cpp 83 fGLLibrary = dlopen(
  /external/swiftshader/third_party/LLVM/lib/Support/
DynamicLibrary.cpp 77 void *handle = dlopen(filename, RTLD_LAZY|RTLD_GLOBAL);
85 // with the handle of dlopen(NULL, RTLD_GLOBAL).
114 if (errMsg) *errMsg = "dlopen() not supported on this platform";
  /frameworks/av/media/libmediaplayerservice/
TestPlayerStub.cpp 23 #include <dlfcn.h> // for dlopen/dlclose
134 // Load the test player from the url. dlopen will fail if the lib
137 mHandle = ::dlopen(mFilename, RTLD_NOW | RTLD_GLOBAL);
139 ALOGE("dlopen failed: %s", ::dlerror());
  /frameworks/av/media/libstagefright/omx/
SoftOMXPlugin.cpp 95 // It also leaves the rest of the logic around the dlopen()/dlclose()
104 // a dlclose/dlopen cycle.
107 void *libHandle = dlopen(libName.c_str(), RTLD_NOW|RTLD_NODELETE);
110 ALOGE("unable to dlopen %s: %s", libName.c_str(), dlerror());
  /frameworks/base/media/mca/filterfw/native/core/
native_program.cpp 47 lib_handle_ = dlopen(lib_name.c_str(), RTLD_NOW);
  /hardware/intel/common/libva/va/drm/
va_drm_auth_x11.c 95 auth->handle = dlopen(libva_x11_name, RTLD_LAZY | RTLD_GLOBAL);
  /hardware/intel/common/libva/va/wayland/
va_wayland_emgd.c 138 wl_emgd_ctx->handle = dlopen(LIBWAYLAND_EMGD_NAME, RTLD_LAZY|RTLD_LOCAL);
  /hardware/qcom/audio/hal/audio_extn/
audio_extn.c 112 if ((qcopt_handle = dlopen(opt_lib_path, RTLD_NOW)) == NULL) {
ext_speaker.c 49 sd->speaker_bundle = dlopen(LIB_SPEAKER_BUNDLE, RTLD_NOW);
51 ALOGE("%s: DLOPEN failed for %s", __func__, LIB_SPEAKER_BUNDLE);
54 ALOGV("%s: DLOPEN successful for %s", __func__, LIB_SPEAKER_BUNDLE);
  /hardware/qcom/camera/msm8998/QCamera2/HAL/
QCameraThermalAdapter.cpp 71 mHandle = dlopen("/vendor/lib/libthermalclient.so", RTLD_NOW);
74 LOGE("dlopen failed with error %s",
  /hardware/qcom/display/msm8909/gralloc/
gr_adreno_info.cpp 57 libadreno_utils_ = ::dlopen("libadreno_utils.so", RTLD_NOW);
  /hardware/qcom/display/msm8909w_3100/libgralloc1/
gr_adreno_info.cpp 57 libadreno_utils_ = ::dlopen("libadreno_utils.so", RTLD_NOW);

Completed in 633 milliseconds

1 2 3 4 5 6 78 91011>>