Searched
full:dlopen (Results
251 -
275 of
842) sorted by null
<<11121314151617181920>>
/external/chromium_org/native_client_sdk/src/examples/tutorial/dlopen/ |
dlopen.cc | 72 // 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/ui/gl/ |
io_surface_support_mac.cc | 241 iosurface_handle_ = dlopen( 244 opengl_handle_ = dlopen( 247 core_video_handle_ = dlopen(
|
/external/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";
|
/art/runtime/ |
oat_file.cc | 67 // If we are using PORTABLE, use dlopen to deal with relocations. 78 // On target, dlopen may fail when compiling due to selinux restrictions on installd. 80 // On host, dlopen is expected to fail when cross compiling, so fall back to OpenElfFile. 98 bool success = oat_file->Dlopen(elf_filename, requested_base); 130 bool OatFile::Dlopen(const std::string& elf_filename, byte* requested_base) { 136 dlopen_handle_ = dlopen(absolute_path, RTLD_NOW); 139 VLOG(class_linker) << "Failed to dlopen " << elf_filename << ": " << dlerror();
|
/external/chromium_org/third_party/mesa/src/src/glx/ |
dri_common.c | 117 * Try to \c dlopen the named driver. 126 * A handle from \c dlopen, or \c NULL if driver file not found. 137 glhandle = dlopen("libGL.so.1", RTLD_NOW | RTLD_GLOBAL); 165 handle = dlopen(realDriverName, RTLD_NOW | RTLD_GLOBAL); 172 handle = dlopen(realDriverName, RTLD_NOW | RTLD_GLOBAL); 178 ErrorMessageF("dlopen %s failed (%s)\n", realDriverName, dlerror());
|
/external/mesa3d/src/glx/ |
dri_common.c | 117 * Try to \c dlopen the named driver. 126 * A handle from \c dlopen, or \c NULL if driver file not found. 137 glhandle = dlopen("libGL.so.1", RTLD_NOW | RTLD_GLOBAL); 165 handle = dlopen(realDriverName, RTLD_NOW | RTLD_GLOBAL); 172 handle = dlopen(realDriverName, RTLD_NOW | RTLD_GLOBAL); 178 ErrorMessageF("dlopen %s failed (%s)\n", realDriverName, dlerror());
|
/external/chromium_org/chrome/browser/ui/libgtk2ui/ |
app_indicator_icon.cc | 84 void* indicator_lib = dlopen("libappindicator.so", RTLD_LAZY); 86 indicator_lib = dlopen("libappindicator.so.1", RTLD_LAZY); 89 indicator_lib = dlopen("libappindicator.so.0", RTLD_LAZY);
|
/external/chromium_org/tools/generate_library_loader/ |
generate_library_loader.py | 8 which is a wrapper for dlopen or direct linking with given library. 11 and also makes it easier to write code using dlopen (and also provides 96 library_ = dlopen(library_name.c_str(), RTLD_LAZY);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
dlfcn.h | 58 extern void *dlopen (__const char *__file, int __mode) __THROW; 60 /* Unmap and close a shared object opened by `dlopen'. 70 /* Like `dlopen', but request object to be allocated in a new namespace. */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
dlfcn.h | 58 extern void *dlopen (__const char *__file, int __mode) __THROW; 60 /* Unmap and close a shared object opened by `dlopen'. 70 /* Like `dlopen', but request object to be allocated in a new namespace. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
dlfcn.h | 58 extern void *dlopen (__const char *__file, int __mode) __THROW; 60 /* Unmap and close a shared object opened by `dlopen'. 70 /* Like `dlopen', but request object to be allocated in a new namespace. */
|
/art/compiler/ |
elf_writer_test.cc | 48 void* dl_oat_so = dlopen(elf_filename.c_str(), RTLD_NOW);
|
/bionic/libc/unistd/ |
time.c | 59 // called by dlopen when .so is loaded
|
/device/generic/goldfish/camera/ |
JpegCompressor.cpp | 51 mDl = dlopen(dlName, RTLD_NOW);
|
JpegCompressor.h | 88 // library handle to dlopen
|
/device/lge/mako/camera/QCamera/stack/mm-camera-test/src/ |
mm_qcamera_app.c | 156 my_cam_app.hal_lib.ptr = dlopen("/usr/lib/hw/camera.msm7630.so", RTLD_LAZY); 158 my_cam_app.hal_lib.ptr = dlopen("/usr/lib/hw/camera.msm7627A.so", RTLD_LAZY); 160 //my_cam_app.hal_lib.ptr = dlopen("hw/camera.msm8960.so", RTLD_NOW); 161 my_cam_app.hal_lib.ptr = dlopen("libmmcamera_interface_badger.so", RTLD_NOW);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
latebindingsymboltable.cc | 53 DllHandle handle = dlopen(dll_name, RTLD_NOW);
|
/external/chromium_org/tools/gyp/test/module/src/ |
program.c | 72 dl = dlopen(module_path, RTLD_LAZY);
|
/external/e2fsprogs/lib/ss/ |
get_readline.c | 69 if ((handle = dlopen(cp, RTLD_NOW))) {
|
/external/openfst/ |
README | 8 g++ (>= 4.1). Expected to work wherever adequate POSIX (dlopen, ssize_t,
|
/external/qemu/android/ |
opengles.h | 19 * libraries through dlopen() or equivalent.
|
/external/smali/deodexerant/ |
deodexerant.c | 48 void *libdvm = dlopen("libdvm.so", RTLD_LAZY);
|
/frameworks/compile/libbcc/include/bcc/ExecutionEngine/ |
SymbolResolvers.h | 28 * Symbol lookup via dlopen()/dlsym().
|
/hardware/qcom/media/libstagefrighthw/ |
QComOMXPlugin.cpp | 30 : mLibHandle(dlopen("libOmxCore.so", RTLD_NOW)),
|
/hardware/samsung_slsi/exynos5/libstagefrighthw/ |
Exynos_OMX_Plugin.cpp | 31 : mLibHandle(dlopen("libExynosOMX_Core.so", RTLD_NOW)),
|
Completed in 1425 milliseconds
<<11121314151617181920>>