/external/compiler-rt/test/profile/ |
D | instrprof-dlopen.test | 2 RUN: %clang_profgen -o %t.d/func.shared -fPIC -shared %S/Inputs/instrprof-dlopen-func.c 3 RUN: %clang_profgen -o %t.d/func2.shared -fPIC -shared %S/Inputs/instrprof-dlopen-func2.c 4 …EN_FUNC_DIR=\"%t.d\" -DDLOPEN_FLAGS="RTLD_LAZY | RTLD_LOCAL" %S/Inputs/instrprof-dlopen-main.c -ldl 5 …N_FUNC_DIR=\"%t.d\" -DDLOPEN_FLAGS="RTLD_LAZY | RTLD_GLOBAL" %S/Inputs/instrprof-dlopen-main.c -ldl 7 RUN: %clang -c -o %t.d/main.o %S/Inputs/instrprof-dlopen-main.c 8 RUN: %clang_profgen -o %t-static %S/Inputs/instrprof-dlopen-func.c %S/Inputs/instrprof-dlopen-func2… 18 …ang_profuse=%t-static.profdata -o %t-func.static.ll -S -emit-llvm %S/Inputs/instrprof-dlopen-func.c 19 RUN: %clang_profuse=%t-local.profdata -o %t-func.local.ll -S -emit-llvm %S/Inputs/instrprof-dlopen-… 20 …ang_profuse=%t-global.profdata -o %t-func.global.ll -S -emit-llvm %S/Inputs/instrprof-dlopen-func.c 24 …g_profuse=%t-static.profdata -o %t-func2.static.ll -S -emit-llvm %S/Inputs/instrprof-dlopen-func2.c [all …]
|
/external/chromium_org/third_party/android_crazy_linker/src/tests/ |
D | bench_load_library.cpp | 75 lib = dlopen(library_path, RTLD_NOW); in main() 102 void* sles_lib = dlopen("libOpenSLES.so", RTLD_NOW); in main() 116 void* sys1_lib = dlopen("libandroid.so", RTLD_NOW); in main() 117 void* sys2_lib = dlopen("libjnigraphics.so", RTLD_NOW); in main() 118 void* sys3_lib = dlopen("libOpenSLES.so", RTLD_NOW); in main()
|
/external/chromium_org/native_client_sdk/src/examples/tutorial/dlopen/ |
D | example.dsc | 5 'NAME': 'dlopen', 7 'SOURCES': ['dlopen.cc'], 19 # This .so file is manually loaded by dlopen; we don't want to include it 30 'NAME': 'dlopen',
|
D | dlopen.cc | 76 eightball_so_ = dlopen("libeightball.so", RTLD_LAZY); in LoadLibrary() 94 reverse_so_ = dlopen(reverse_so_path, RTLD_LAZY); in LoadLibrary()
|
/external/lldb/test/functionalities/load_unload/ |
D | main.c | 26 …a_dylib_handle = dlopen (a_name, RTLD_NOW); // Set break point at this line for test_lldb_process_… in main() 42 c_dylib_handle = dlopen (c_name, RTLD_NOW); in main() 55 a_dylib_handle = dlopen (a_name, RTLD_NOW); in main()
|
/external/chromium_org/native_client_sdk/src/doc/devguide/devcycle/ |
D | dynamic-loading.rst | 163 default. Application that load shared libraries at runtime using ``dlopen()`` 172 shared library, and how to use the ``dlopen()`` interface to load that library 175 use the ``dlopen()`` interface. The SDK example is nevertheless instructive, as 180 The SDK example, located in ``examples/tutorial/dlopen``, includes three C++ 187 .nmf file and is therefore directly loadable with ``dlopen()``. 196 dlopen.cc 201 Run ``make`` in the dlopen directory to see the commands the Makefile executes 212 multiple versions of the example using the SDK toolchains. The dlopen example 226 ``dlopen()``) it is also convenient to list libraries in the manifest file. 230 allow ``dlopen()`` to access them. [all …]
|
/external/compiler-rt/test/tsan/ |
D | ignore_lib2.cc | 19 dlopen(lib0.c_str(), RTLD_GLOBAL | RTLD_NOW); in main() 20 dlopen(lib1.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
|
/external/chromium_org/chrome/browser/ui/libgtk2ui/ |
D | unity_service.cc | 72 void* unity_lib = dlopen("libunity.so.4", RTLD_LAZY); in EnsureMethodsLoaded() 74 unity_lib = dlopen("libunity.so.6", RTLD_LAZY); in EnsureMethodsLoaded() 76 unity_lib = dlopen("libunity.so.9", RTLD_LAZY); in EnsureMethodsLoaded()
|
/external/chromium_org/ppapi/native_client/tests/nacl_browser/browser_dynamic_library/ |
D | browser_dlopen_test.cc | 22 void* lib_handle = dlopen("libmemusage.so", RTLD_LAZY); in TestDlopenMainThread() 34 void* lib_handle = dlopen("libmemusage.so", RTLD_LAZY); in SecondaryThreadFunc()
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
D | coverage-module-unloaded.cc | 29 dlopen(SO_DIR "/libcoverage_module_unloaded_test_1.so", RTLD_LAZY); in main() 35 dlopen(SO_DIR "/libcoverage_module_unloaded_test_2.so", RTLD_LAZY); in main()
|
D | asan_dlopen_test.cc | 11 dlopen(RT, RTLD_LAZY); in main()
|
/external/compiler-rt/test/profile/Inputs/ |
D | instrprof-dlopen-main.c | 15 void *f1_handle = dlopen(DLOPEN_FUNC_DIR"/func.shared", DLOPEN_FLAGS); in main() 28 void *f2_handle = dlopen(DLOPEN_FUNC_DIR"/func2.shared", DLOPEN_FLAGS); in main()
|
/external/qemu/android/config/ |
D | check-esd.c | 45 esd_lib = dlopen( "libesd.so", RTLD_NOW ); in main() 47 esd_lib = dlopen( "libesd.so.0", RTLD_NOW ); in main()
|
D | check-pulseaudio.c | 46 pa_lib = dlopen( "libpulse-simple.so", RTLD_NOW ); in main() 48 pa_lib = dlopen( "libpulse-simple.so.0", RTLD_NOW ); in main()
|
/external/chromium_org/third_party/tcmalloc/chromium/src/solaris/ |
D | libstdc++.la | 23 # The name that we can dlopen(3). 46 # Files to dlopen/dlpreopen 47 dlopen=''
|
/external/chromium_org/third_party/tcmalloc/vendor/src/solaris/ |
D | libstdc++.la | 23 # The name that we can dlopen(3). 46 # Files to dlopen/dlpreopen 47 dlopen=''
|
/external/protobuf/src/solaris/ |
D | libstdc++.la | 23 # The name that we can dlopen(3). 46 # Files to dlopen/dlpreopen 47 dlopen=''
|
/external/chromium_org/sdch/open-vcdiff/src/solaris/ |
D | libstdc++.la | 23 # The name that we can dlopen(3). 46 # Files to dlopen/dlpreopen 47 dlopen=''
|
/external/iproute2/tc/ |
D | tc.c | 124 dlh = dlopen(buf, RTLD_LAZY); in get_qdisc_kind() 129 dlh = BODY = dlopen(NULL, RTLD_LAZY); in get_qdisc_kind() 178 dlh = dlopen(buf, RTLD_LAZY); in get_filter_kind() 182 dlh = BODY = dlopen(NULL, RTLD_LAZY); in get_filter_kind()
|
/external/chromium_org/content/common/sandbox_linux/ |
D | bpf_gpu_policy_linux.cc | 233 dlopen(I965DrvVideoPath, RTLD_NOW|RTLD_GLOBAL|RTLD_NODELETE); in PreSandboxHook() 234 dlopen("libva.so.1", RTLD_NOW|RTLD_GLOBAL|RTLD_NODELETE); in PreSandboxHook() 235 dlopen("libva-x11.so.1", RTLD_NOW|RTLD_GLOBAL|RTLD_NODELETE); in PreSandboxHook()
|
D | bpf_cros_arm_gpu_policy_linux.cc | 180 dlopen("/usr/lib/libmali.so", dlopen_flag); in PreSandboxHook() 182 dlopen("/usr/lib/libtegrav4l2.so", dlopen_flag); in PreSandboxHook()
|
/external/iproute2/genl/ |
D | genl.c | 68 dlh = dlopen(buf, RTLD_LAZY); in get_genl_kind() 72 dlh = BODY = dlopen(NULL, RTLD_LAZY); in get_genl_kind()
|
/external/qemu/distrib/sdl-1.2.15/acinclude/ |
D | ltdl.m4 | 440 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(0, 0);]])], [all …]
|
/external/qemu/android/ |
D | dynlink-static.c | 25 void* dlopen(void) in dlopen() function
|
/external/compiler-rt/test/msan/ |
D | dlerror.cc | 9 void *p = dlopen("/bad/file/name", RTLD_NOW); in main()
|