Home
last modified time | relevance | path

Searched refs:RTLD_LAZY (Results 1 – 25 of 118) sorted by relevance

12345

/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DUnmanagedLibrary.cs42 const int RTLD_LAZY = 1; field in Grpc.Core.Internal.UnmanagedLibrary
142 return Mono.dlopen(libraryPath, RTLD_GLOBAL + RTLD_LAZY); in PlatformSpecificLoadLibrary()
146 return CoreCLR.dlopen(libraryPath, RTLD_GLOBAL + RTLD_LAZY); in PlatformSpecificLoadLibrary()
148 return Linux.dlopen(libraryPath, RTLD_GLOBAL + RTLD_LAZY); in PlatformSpecificLoadLibrary()
152 return MacOSX.dlopen(libraryPath, RTLD_GLOBAL + RTLD_LAZY); in PlatformSpecificLoadLibrary()
/external/python/cpython2/Modules/
Ddlmodule.c12 #ifndef RTLD_LAZY
13 #define RTLD_LAZY 1 macro
178 mode = RTLD_LAZY; in dl_open()
184 if (mode != RTLD_LAZY) { in dl_open()
260 x = PyInt_FromLong((long)RTLD_LAZY); in initdl()
/external/swiftshader/src/Common/
DSharedLibrary.hpp95 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); in loadLibrary()
104 void *resident = dlopen(path, RTLD_LAZY | RTLD_NOLOAD | RTLD_LOCAL); in getLibraryHandle()
108 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); // Increment reference count in getLibraryHandle()
/external/swiftshader/src/System/
DSharedLibrary.hpp113 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); in loadLibrary()
122 void *resident = dlopen(path, RTLD_LAZY | RTLD_NOLOAD | RTLD_LOCAL); in getLibraryHandle()
126 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); // Increment reference count in getLibraryHandle()
/external/compiler-rt/test/asan/TestCases/Posix/
Dcoverage-module-unloaded.cc28 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib1 in main()
33 void *handle2 = dlopen(argv[2], RTLD_LAZY); // %dynamiclib2 in main()
Dcoverage-direct.cc75 void *handle1 = dlopen(argv[1], RTLD_LAZY); in main()
Dcoverage-direct-activation.cc51 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib in main()
/external/iproute2/tc/
Dtc.c113 dlh = dlopen(buf, RTLD_LAZY); in get_qdisc_kind()
118 dlh = BODY = dlopen(NULL, RTLD_LAZY); in get_qdisc_kind()
157 dlh = dlopen(buf, RTLD_LAZY); in get_filter_kind()
161 dlh = BODY = dlopen(NULL, RTLD_LAZY); in get_filter_kind()
Dtc_exec.c54 dlh = dlopen(buf, RTLD_LAZY); in get_exec_kind()
58 dlh = BODY = dlopen(NULL, RTLD_LAZY); in get_exec_kind()
Dm_ipt.c195 handle = dlopen(path, RTLD_LAZY); in get_target_name()
199 handle = dlopen(path, RTLD_LAZY); in get_target_name()
203 handle = dlopen(path, RTLD_LAZY); in get_target_name()
208 handle = dlopen(path, RTLD_LAZY); in get_target_name()
/external/python/cpython2/Doc/library/
Ddl.rst34 .. function:: open(name[, mode=RTLD_LAZY])
37 (: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`.
45 .. data:: RTLD_LAZY
/external/iproute2/genl/
Dgenl.c67 dlh = dlopen(buf, RTLD_LAZY); in get_genl_kind()
71 dlh = BODY = dlopen(NULL, RTLD_LAZY); in get_genl_kind()
/external/tensorflow/tensorflow/lite/nnapi/
Dnnapi_implementation.cc115 libandroid = dlopen("libandroid.so", RTLD_LAZY | RTLD_LOCAL); in LoadNnApi()
124 libneuralnetworks = dlopen("libneuralnetworks.so", RTLD_LAZY | RTLD_LOCAL); in LoadNnApi()
/external/compiler-rt/test/asan/TestCases/Linux/
Dasan_dlopen_test.cc11 dlopen(RT, RTLD_LAZY); in main()
Dstack-trace-dlclose.cc28 void *handle = dlopen(SO_DIR "/stack_trace_dlclose.so", RTLD_LAZY); in main()
/external/skia/src/ports/
DSkOSLibrary_posix.cpp15 return dlopen(libraryName, RTLD_LAZY); in DynamicLoadLibrary()
/external/skqp/src/ports/
DSkOSLibrary_posix.cpp15 return dlopen(libraryName, RTLD_LAZY); in DynamicLoadLibrary()
/external/libxml2/os400/dlfcn/
Ddlfcn.h18 #define RTLD_LAZY 000 macro
/external/python/cpython2/Lib/plat-sunos5/
DDLFCN.py3 RTLD_LAZY = 0x00001 variable
/external/compiler-rt/test/asan/TestCases/Android/
Dcoverage-android.cc127 dlopen(SO_DIR "/libcoverage_android_test_1.so", RTLD_LAZY); in main()
/external/iproute2/include/
Ddlfcn.h10 #define RTLD_LAZY 0 macro
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/IntelJITEvents/
Djitprofiling.c349 m_libHandle = dlopen(dllName, RTLD_LAZY); in loadiJIT_Funcs()
358 m_libHandle = dlopen(DEFAULT_DLLNAME, RTLD_LAZY); in loadiJIT_Funcs()
/external/v8/src/third_party/vtune/
Djitprofiling.cc369 m_libHandle = dlopen(dllName, RTLD_LAZY); in loadiJIT_Funcs()
378 m_libHandle = dlopen(DEFAULT_DLLNAME, RTLD_LAZY); in loadiJIT_Funcs()
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
Djitprofiling.c350 m_libHandle = dlopen(dllName, RTLD_LAZY); in loadiJIT_Funcs()
359 m_libHandle = dlopen(DEFAULT_DLLNAME, RTLD_LAZY); in loadiJIT_Funcs()
/external/python/cpython2/Python/
Dpystate.c20 #ifndef RTLD_LAZY
21 #define RTLD_LAZY 1 macro
81 interp->dlopenflags = RTLD_LAZY; in PyInterpreterState_New()

12345