HomeSort by relevance Sort by last modified time
    Searched refs:RTLD_NOW (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/compiler-rt/test/msan/
dlerror.cc 9 void *p = dlopen("/bad/file/name", RTLD_NOW);
  /external/compiler-rt/test/tsan/
ignore_lib2.cc 19 dlopen(lib0.c_str(), RTLD_GLOBAL | RTLD_NOW);
20 dlopen(lib1.c_str(), RTLD_GLOBAL | RTLD_NOW);
ignore_lib1.cc 22 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW);
ignore_lib3.cc 19 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW);
load_shared_lib.cc 54 void *lib = dlopen(path.c_str(), RTLD_NOW);
  /bionic/libc/include/
dlfcn.h 54 RTLD_NOW = 2,
56 RTLD_NOW = 0,
  /development/ndk/platforms/android-L/include/
dlfcn.h 54 RTLD_NOW = 2,
56 RTLD_NOW = 0,
  /development/ndk/platforms/android-3/include/
dlfcn.h 41 RTLD_NOW = 0,
  /bionic/tests/
dlfcn_test.cpp 51 void* self = dlopen(NULL, RTLD_NOW);
68 void* handle = dlopen("libtest_with_dependency.so", RTLD_NOW);
81 void* handle = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD);
83 handle = dlopen("libtest_simple.so", RTLD_NOW);
84 void* handle2 = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD);
100 void* handle = dlopen("libtest_ifunc.so", RTLD_NOW);
112 handle = dlopen("libtest_ifunc.so", RTLD_NOW);
126 void* handle = dlopen("libtest_ifunc.so", RTLD_NOW);
156 handle = dlopen("libtest_relo_check_dt_needed_order.so", RTLD_NOW);
191 void* handle = dlopen("libtest_check_order.so", RTLD_NOW | RTLD_GLOBAL)
    [all...]
dlext_test.cpp 64 void* h = dlopen(LIBNAME, RTLD_NOW | RTLD_NOLOAD);
66 h = dlopen(LIBNAME_NORELRO, RTLD_NOW | RTLD_NOLOAD);
82 handle_ = android_dlopen_ext(LIBNAME, RTLD_NOW, nullptr);
92 handle_ = android_dlopen_ext(LIBNAME, RTLD_NOW, &extinfo);
109 handle_ = android_dlopen_ext(lib_path, RTLD_NOW, &extinfo);
128 handle_ = android_dlopen_ext(lib_path, RTLD_NOW, &extinfo);
148 handle_ = android_dlopen_ext("libname_placeholder", RTLD_NOW, &extinfo);
153 handle_ = android_dlopen_ext("libname_placeholder", RTLD_NOW, &extinfo);
167 handle_ = android_dlopen_ext("/some/lib/that/does_not_exist", RTLD_NOW, &extinfo);
180 handle_ = android_dlopen_ext(LIBNAME, RTLD_NOW, &extinfo)
    [all...]
atexit_test.cpp 30 void* handle = dlopen("libtest_atexit.so", RTLD_NOW);
  /development/ndk/platforms/android-8/include/
dlfcn.h 53 RTLD_NOW = 0,
  /external/chromium_org/third_party/android_crazy_linker/src/tests/
zoo.cpp 10 void* bar_lib = dlopen("libbar.so", RTLD_NOW);
bench_load_library.cpp 75 lib = dlopen(library_path, RTLD_NOW);
102 void* sles_lib = dlopen("libOpenSLES.so", RTLD_NOW);
116 void* sys1_lib = dlopen("libandroid.so", RTLD_NOW);
117 void* sys2_lib = dlopen("libjnigraphics.so", RTLD_NOW);
118 void* sys3_lib = dlopen("libOpenSLES.so", RTLD_NOW);
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
libudevsymboltable.cc 46 RTLD_NOW|RTLD_LOCAL|RTLD_NOLOAD);
  /external/lldb/test/functionalities/load_unload/
main.c 26 a_dylib_handle = dlopen (a_name, RTLD_NOW); // Set break point at this line for test_lldb_process_load_and_unload_commands().
42 c_dylib_handle = dlopen (c_name, RTLD_NOW);
55 a_dylib_handle = dlopen (a_name, RTLD_NOW);
  /development/ndk/tests/dlclose-destruction/jni/
main.c 9 void* lib = dlopen("libtest1.so", RTLD_NOW);
  /external/compiler-rt/test/asan/TestCases/Posix/
init-order-dlopen.cc 50 if (0 == dlopen(path.c_str(), RTLD_NOW)) {
shared-lib-test.cc 25 void *lib = dlopen(path.c_str(), RTLD_NOW);
asan-symbolize-sanity-test.cc 26 void *lib = dlopen(path.c_str(), RTLD_NOW);
start-deactivated.cc 36 void *dso = dlopen(path.c_str(), RTLD_NOW);
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
importgl.c 92 sGLESSO = dlopen("libGLESv1_CM.so", RTLD_NOW);
94 sGLESSO = dlopen("libGLES_CM.so", RTLD_NOW);
96 sGLESSO = dlopen("libGLES_CL.so", RTLD_NOW);
  /external/chromium_org/tools/android/run_pie/
run_pie.c 47 void* handle = dlopen(argv[0], RTLD_NOW);
  /external/chromium_org/content/common/sandbox_linux/
bpf_gpu_policy_linux.cc 233 dlopen(I965DrvVideoPath, RTLD_NOW|RTLD_GLOBAL|RTLD_NODELETE);
234 dlopen("libva.so.1", RTLD_NOW|RTLD_GLOBAL|RTLD_NODELETE);
235 dlopen("libva-x11.so.1", RTLD_NOW|RTLD_GLOBAL|RTLD_NODELETE);
  /device/generic/goldfish/camera/
JpegCompressor.cpp 51 mDl = dlopen(dlName, RTLD_NOW);

Completed in 1468 milliseconds

1 2 3 4