Home
last modified time | relevance | path

Searched refs:RTLD_NOW (Results 1 – 25 of 170) sorted by relevance

1234567

/external/tpm2-tss/test/unit/
Dtctildr-dl.c147 expect_value(__wrap_dlopen, flags, RTLD_NOW); in test_handle_from_name_first_dlopen_success()
163 expect_value(__wrap_dlopen, flags, RTLD_NOW); in test_handle_from_name_second_dlopen_success()
167 expect_value(__wrap_dlopen, flags, RTLD_NOW); in test_handle_from_name_second_dlopen_success()
182 expect_value(__wrap_dlopen, flags, RTLD_NOW); in test_handle_from_name_third_dlopen_success()
186 expect_value(__wrap_dlopen, flags, RTLD_NOW); in test_handle_from_name_third_dlopen_success()
190 expect_value(__wrap_dlopen, flags, RTLD_NOW); in test_handle_from_name_third_dlopen_success()
221 expect_value(__wrap_dlopen, flags, RTLD_NOW); in test_get_info_default_success()
225 expect_value(__wrap_dlopen, flags, RTLD_NOW); in test_get_info_default_success()
229 expect_value(__wrap_dlopen, flags, RTLD_NOW); in test_get_info_default_success()
233 expect_value(__wrap_dlopen, flags, RTLD_NOW); in test_get_info_default_success()
[all …]
/external/rust/crates/libloading/src/os/unix/
Dconsts.rs28 pub const RTLD_NOW: c_int = posix::RTLD_NOW; constant
50 pub(super) const RTLD_NOW: c_int = !0; constant
94 pub(super) const RTLD_NOW: c_int = 1;
116 pub(super) const RTLD_NOW: c_int = 2;
118 pub(super) const RTLD_NOW: c_int = 0;
/external/google-breakpad/src/common/linux/
Dhttp_upload.cc74 void* curl_lib = dlopen(NULL, RTLD_NOW); in SendRequest()
83 curl_lib = dlopen("libcurl.so", RTLD_NOW); in SendRequest()
88 curl_lib = dlopen("libcurl.so.4", RTLD_NOW); in SendRequest()
93 curl_lib = dlopen("libcurl-gnutls.so.4", RTLD_NOW); in SendRequest()
96 curl_lib = dlopen("libcurl.so.3", RTLD_NOW); in SendRequest()
Dlibcurl_wrapper.cc177 curl_lib_ = dlopen(nullptr, RTLD_NOW); in Init()
187 curl_lib_ = dlopen("libcurl.so", RTLD_NOW); in Init()
190 curl_lib_ = dlopen("libcurl.so.4", RTLD_NOW); in Init()
193 curl_lib_ = dlopen("libcurl.so.3", RTLD_NOW); in Init()
/external/compiler-rt/test/tsan/
Dignore_lib2.cc19 dlopen(lib0.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
20 dlopen(lib1.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
Dignore_lib3.cc22 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
Dignore_lib1.cc24 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
Dignore_lib4.cc39 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
/external/rust/crates/libloading/tests/
Dconstants.rs11 const_assert_eq!(libloading::os::unix::RTLD_NOW, libc::RTLD_NOW);
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dcompatibility_close_monitor.cc39 void *lib = dlopen("libandroidio.so", RTLD_NOW); in init()
47 lib = dlopen("libjavacore.so", RTLD_NOW); in init()
/external/libese/tools/ese_replay/
Dhw.c50 void *hw_handle = dlopen(hw->lib, RTLD_NOW); in release_hardware()
57 void *hw_handle = dlopen(hw->lib, RTLD_NOW); in initialize_hardware()
/external/tpm2-tss/src/tss2-tcti/
Dtctildr-dl.c84 *handle = dlopen(file, RTLD_NOW); in handle_from_name()
99 *handle = dlopen(file_xfrm, RTLD_NOW); in handle_from_name()
114 *handle = dlopen(file_xfrm, RTLD_NOW); in handle_from_name()
/external/python/cpython2/Modules/
Ddlmodule.c183 #ifndef RTLD_NOW in dl_open()
263 #ifdef RTLD_NOW in initdl()
264 INSINT(RTLD_NOW); in initdl()
/external/libchrome/base/android/
Dandroid_image_reader_compat.cc53 void* libmediandk = dlopen("libmediandk.so", RTLD_NOW); in LoadFunctions()
70 void* libandroid = dlopen("libandroid.so", RTLD_NOW); in LoadFunctions()
/external/python/cpython2/Doc/library/
Ddl.rst37 (:const:`RTLD_LAZY`) or immediate binding (:const:`RTLD_NOW`). Default is
38 :const:`RTLD_LAZY`. Note that some systems do not support :const:`RTLD_NOW`.
50 .. data:: RTLD_NOW
/external/tensorflow/tensorflow/lite/experimental/acceleration/mini_benchmark/
Drunner_test.cc47 dlopen(entry_point_file.c_str(), RTLD_NOW | RTLD_LOCAL | RTLD_NODELETE); in LoadEntryPointModule()
105 dlopen(dl_info.dli_fname, RTLD_NOW | RTLD_LOCAL | RTLD_NODELETE); in TEST_F()
/external/compiler-rt/test/msan/
Ddlerror.cc9 void *p = dlopen("/bad/file/name", RTLD_NOW); in main()
Ddlopen_executable.cc12 void *p = dlopen(0, RTLD_NOW); in main()
/external/libxml2/os400/dlfcn/
Ddlfcn.h19 #define RTLD_NOW 001 macro
/external/compiler-rt/test/tsan/Darwin/
Ddlopen.cc29 void *handle = dlopen(argv[1], RTLD_NOW); in main()
/external/python/cpython2/Lib/plat-sunos5/
DDLFCN.py4 RTLD_NOW = 0x00002 variable
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/
Dopencl_wrapper.cc75 libopencl = dlopen("libOpenCL-pixel.so", RTLD_NOW | RTLD_LOCAL); in LoadOpenCL()
77 libopencl = dlopen("libOpenCL-car.so", RTLD_NOW | RTLD_LOCAL); in LoadOpenCL()
94 libopencl = dlopen(kClLibName, RTLD_NOW | RTLD_LOCAL); in LoadOpenCL()
/external/compiler-rt/test/asan/TestCases/Linux/
Dactivation-options.cc56 void *dso = dlopen(path.c_str(), RTLD_NOW); in main()
/external/angle/src/libANGLE/renderer/vulkan/android/
DAHBFunctions.cpp27 void *handle = dlopen(nullptr, RTLD_NOW); in AHBFunctions()
/external/musl/include/
Ddlfcn.h11 #define RTLD_NOW 2 macro

1234567